Struct avro_rs::Writer[][src]

pub struct Writer<'a, W> { /* fields omitted */ }

Main interface for writing Avro formatted values.

Methods

impl<'a, W: Write> Writer<'a, W>
[src]

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

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

Get a reference to the Schema associated to a Writer.

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.

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.

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.

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).

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).

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).

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.

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

NOTE This function doesn't guarantee that everything gets written before consuming the buffer. Please call flush before.

Auto Trait Implementations

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

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