Struct mz_avro::decode::public_decoders::MappingDecoder
source · pub struct MappingDecoder<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, AvroError>> {
inner: Inner,
conv: Conv,
}
Fields§
§inner: Inner
§conv: Conv
Implementations§
source§impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, AvroError>> MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, AvroError>> MappingDecoder<T, InnerOut, Inner, Conv>
Trait Implementations§
source§impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, AvroError>> AvroDecode for MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, AvroError>> AvroDecode for MappingDecoder<T, InnerOut, Inner, Conv>
type Out = T
fn record<R: AvroRead, A: AvroRecordAccess<R>>( self, a: &mut A ) -> Result<Self::Out, AvroError>
fn union_branch<'a, R: AvroRead, D: AvroDeserializer>( self, idx: usize, n_variants: usize, null_variant: Option<usize>, deserializer: D, reader: &'a mut R ) -> Result<Self::Out, AvroError>
fn array<A: AvroArrayAccess>(self, a: &mut A) -> Result<Self::Out, AvroError>
fn map<M: AvroMapAccess>(self, m: &mut M) -> Result<Self::Out, AvroError>
fn enum_variant(self, symbol: &str, idx: usize) -> Result<Self::Out, AvroError>
fn scalar(self, scalar: Scalar) -> Result<Self::Out, AvroError>
fn decimal<'a, R: AvroRead>( self, precision: usize, scale: usize, r: ValueOrReader<'a, &'a [u8], R> ) -> Result<Self::Out, AvroError>
fn bytes<'a, R: AvroRead>( self, r: ValueOrReader<'a, &'a [u8], R> ) -> Result<Self::Out, AvroError>
fn string<'a, R: AvroRead>( self, r: ValueOrReader<'a, &'a str, R> ) -> Result<Self::Out, AvroError>
fn json<'a, R: AvroRead>( self, r: ValueOrReader<'a, &'a Value, R> ) -> Result<Self::Out, AvroError>
fn uuid<'a, R: AvroRead>( self, r: ValueOrReader<'a, &'a [u8], R> ) -> Result<Self::Out, AvroError>
fn fixed<'a, R: AvroRead>( self, r: ValueOrReader<'a, &'a [u8], R> ) -> Result<Self::Out, AvroError>
fn map_decoder<T, F: FnMut(Self::Out) -> Result<T, AvroError>>( self, f: F ) -> MappingDecoder<T, Self::Out, Self, F>
Auto Trait Implementations§
impl<T, InnerOut, Inner, Conv> RefUnwindSafe for MappingDecoder<T, InnerOut, Inner, Conv>where Conv: RefUnwindSafe, Inner: RefUnwindSafe,
impl<T, InnerOut, Inner, Conv> Send for MappingDecoder<T, InnerOut, Inner, Conv>where Conv: Send, Inner: Send,
impl<T, InnerOut, Inner, Conv> Sync for MappingDecoder<T, InnerOut, Inner, Conv>where Conv: Sync, Inner: Sync,
impl<T, InnerOut, Inner, Conv> Unpin for MappingDecoder<T, InnerOut, Inner, Conv>where Conv: Unpin, Inner: Unpin,
impl<T, InnerOut, Inner, Conv> UnwindSafe for MappingDecoder<T, InnerOut, Inner, Conv>where Conv: UnwindSafe, Inner: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more