Skip to main content

BoxSerializer

Type Alias BoxSerializer 

Source
pub type BoxSerializer<'a> = Box<dyn StreamingIterator<Item = [u8]> + Send + Sync + 'a>;
Available on crate feature io_avro only.
Expand description

A type alias for a boxed StreamingIterator, used to write arrays into avro rows (i.e. a column -> row transposition of types known at run-time)

Aliased Typeยง

pub struct BoxSerializer<'a>(/* private fields */);