Trait mz_avro::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,