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