Skip to main content

I16BeFmt

Type Alias I16BeFmt 

Source
pub type I16BeFmt = Mapped<Fixed<2>, FnSpecMapper<Seq<u8>, i16>>;

Aliased Type§

pub struct I16BeFmt {
    pub inner: Fixed<2>,
    pub mapper: (FnSpec<(Seq<u8>,), i16>, FnSpec<(i16,), Seq<u8>>),
}

Fields§

§inner: Fixed<2>

The inner combinator whose values are being transformed.

§mapper: (FnSpec<(Seq<u8>,), i16>, FnSpec<(i16,), Seq<u8>>)

The mapping between the inner and outer value types.