avro_rs

Struct Writer

Source
pub struct Writer<'a, W> { /* private fields */ }
Expand description

Main interface for writing Avro formatted values.

Implementations§

Source§

impl<'a, W> Writer<'a, W>

Source

pub fn builder() -> WriterBuilder<'a, ((), (), (), ()), W>

Create a builder for building Writer. On the builder, call .schema(...), .writer(...), .codec(...)(optional), .block_size(...)(optional) to set the values of the fields (they accept Into values). Finally, call .build() to create the instance of Writer.

Source§

impl<'a, W: Write> Writer<'a, W>

Source

pub fn new(schema: &'a Schema, writer: W) -> Self

Creates a Writer given a Schema and something implementing the io::Write trait to write to. No compression Codec will be used.

Source

pub fn with_codec(schema: &'a Schema, writer: W, codec: Codec) -> Self

Creates a Writer with a specific Codec given a Schema and something implementing the io::Write trait to write to.

Source

pub fn schema(&self) -> &'a Schema

Get a reference to the Schema associated to a Writer.

Source

pub fn append<T: Into<Value>>(&mut self, value: T) -> AvroResult<usize>

Append a compatible value (implementing the ToAvro trait) to a Writer, also performing schema validation.

Return the number of bytes written (it might be 0, see below).

NOTE This function is not guaranteed to perform any actual write, since it relies on internal buffering for performance reasons. If you want to be sure the value has been written, then call flush.

Source

pub fn append_value_ref(&mut self, value: &Value) -> AvroResult<usize>

Append a compatible value to a Writer, also performing schema validation.

Return the number of bytes written (it might be 0, see below).

NOTE This function is not guaranteed to perform any actual write, since it relies on internal buffering for performance reasons. If you want to be sure the value has been written, then call flush.

Source

pub fn append_ser<S: Serialize>(&mut self, value: S) -> AvroResult<usize>

Append anything implementing the Serialize trait to a Writer for serde compatibility, also performing schema validation.

Return the number of bytes written.

NOTE This function is not guaranteed to perform any actual write, since it relies on internal buffering for performance reasons. If you want to be sure the value has been written, then call flush.

Source

pub fn extend<I, T: Into<Value>>(&mut self, values: I) -> AvroResult<usize>
where I: IntoIterator<Item = T>,

Extend a Writer with an Iterator of compatible values (implementing the ToAvro trait), also performing schema validation.

Return the number of bytes written.

NOTE This function forces the written data to be flushed (an implicit call to flush is performed).

Source

pub fn extend_ser<I, T: Serialize>(&mut self, values: I) -> AvroResult<usize>
where I: IntoIterator<Item = T>,

Extend a Writer with an Iterator of anything implementing the Serialize trait for serde compatibility, also performing schema validation.

Return the number of bytes written.

NOTE This function forces the written data to be flushed (an implicit call to flush is performed).

Source

pub fn extend_from_slice(&mut self, values: &[Value]) -> AvroResult<usize>

Extend a Writer by appending each Value from a slice, while also performing schema validation on each value appended.

Return the number of bytes written.

NOTE This function forces the written data to be flushed (an implicit call to flush is performed).

Source

pub fn flush(&mut self) -> AvroResult<usize>

Flush the content appended to a Writer. Call this function to make sure all the content has been written before releasing the Writer.

Return the number of bytes written.

Source

pub fn into_inner(self) -> AvroResult<W>

Return what the Writer is writing to, consuming the Writer itself.

NOTE This function forces the written data to be flushed (an implicit call to flush is performed).

Auto Trait Implementations§

§

impl<'a, W> Freeze for Writer<'a, W>
where W: Freeze,

§

impl<'a, W> RefUnwindSafe for Writer<'a, W>
where W: RefUnwindSafe,

§

impl<'a, W> Send for Writer<'a, W>
where W: Send,

§

impl<'a, W> Sync for Writer<'a, W>
where W: Sync,

§

impl<'a, W> Unpin for Writer<'a, W>
where W: Unpin,

§

impl<'a, W> UnwindSafe for Writer<'a, W>
where W: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V