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