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