mz_avro::decode

Trait AvroRead

Source
pub trait AvroRead: Read + Skip { }
Expand description

A convenience trait for types that are both readable and skippable.

A blanket implementation is provided for all types that implement both Read and Skip.

Implementors§

Source§

impl<T> AvroRead for T
where T: Read + Skip,