pub struct PushDecoderInput {
buffers: PushBuffers,
}Expand description
The input of a ParquetPushDecoderBuilder.
The shared ArrowReaderBuilder is generic over an input. The sync and
async builders read from a file or async reader; the push decoder has no
reader, so its input is the PushBuffers that caller-pushed bytes
accumulate in (empty for a fresh builder).
Fields§
§buffers: PushBuffersBytes pushed into the decoder, awaiting decode.
Trait Implementations§
Source§impl Debug for PushDecoderInput
impl Debug for PushDecoderInput
Source§impl Default for PushDecoderInput
impl Default for PushDecoderInput
Source§fn default() -> PushDecoderInput
fn default() -> PushDecoderInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PushDecoderInput
impl RefUnwindSafe for PushDecoderInput
impl Send for PushDecoderInput
impl Sync for PushDecoderInput
impl Unpin for PushDecoderInput
impl UnsafeUnpin for PushDecoderInput
impl UnwindSafe for PushDecoderInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more