polars_arrow::io::avro::write

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ยง

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