Skip to main content

U64BeFmt

Type Alias U64BeFmt 

Source
pub type U64BeFmt = Mapped<Fixed<8>, FnSpecMapper<Seq<u8>, u64>>;

Aliased Type§

pub struct U64BeFmt {
    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.