pub type U16BeFmt = Mapped<Fixed<2>, FnSpecMapper<Seq<u8>, u16>>;Aliased Type§
pub struct U16BeFmt {
pub inner: Fixed<2>,
pub mapper: (FnSpec<(Seq<u8>,), u16>, FnSpec<(u16,), Seq<u8>>),
}Fields§
§inner: Fixed<2>The inner combinator whose values are being transformed.
mapper: (FnSpec<(Seq<u8>,), u16>, FnSpec<(u16,), Seq<u8>>)The mapping between the inner and outer value types.