Struct mz_avro::MappingDecoder
source · pub struct MappingDecoder<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, Error>> {
inner: Inner,
conv: Conv,
}
Fields§
§inner: Inner
§conv: Conv
Implementations§
source§impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, Error>> MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, Error>> MappingDecoder<T, InnerOut, Inner, Conv>
Trait Implementations§
source§impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, Error>> AvroDecode for MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner: AvroDecode<Out = InnerOut>, Conv: FnMut(InnerOut) -> Result<T, Error>> 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> Freeze for MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner, Conv> RefUnwindSafe for MappingDecoder<T, InnerOut, Inner, Conv>where
Inner: RefUnwindSafe,
Conv: RefUnwindSafe,
impl<T, InnerOut, Inner, Conv> Send for MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner, Conv> Sync for MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner, Conv> Unpin for MappingDecoder<T, InnerOut, Inner, Conv>
impl<T, InnerOut, Inner, Conv> UnwindSafe for MappingDecoder<T, InnerOut, Inner, Conv>where
Inner: UnwindSafe,
Conv: 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
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request