pub type I16LeFmt = Mapped<Fixed<2>, FnSpecMapper<Seq<u8>, i16>>;Aliased Type§
pub struct I16LeFmt {
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.