pub struct AvroBinaryFormat;
Expand description
Raw Avro binary streaming format (no header or footer).
Trait Implementations§
Source§impl AvroFormat for AvroBinaryFormat
impl AvroFormat for AvroBinaryFormat
Source§fn start_stream<W: Write>(
&mut self,
_writer: &mut W,
_schema: &Schema,
_compression: Option<CompressionCodec>,
) -> Result<(), ArrowError>
fn start_stream<W: Write>( &mut self, _writer: &mut W, _schema: &Schema, _compression: Option<CompressionCodec>, ) -> Result<(), ArrowError>
Write any bytes required at the very beginning of the output stream
(file header, etc.).
Implementations must not write any record data.
Source§impl Debug for AvroBinaryFormat
impl Debug for AvroBinaryFormat
Source§impl Default for AvroBinaryFormat
impl Default for AvroBinaryFormat
Source§fn default() -> AvroBinaryFormat
fn default() -> AvroBinaryFormat
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AvroBinaryFormat
impl RefUnwindSafe for AvroBinaryFormat
impl Send for AvroBinaryFormat
impl Sync for AvroBinaryFormat
impl Unpin for AvroBinaryFormat
impl UnwindSafe for AvroBinaryFormat
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