Skip to main content

I64BeFmt

Type Alias I64BeFmt 

Source
pub type I64BeFmt = Mapped<Fixed<8>, FnSpecMapper<Seq<u8>, i64>>;

Aliased Type§

pub struct I64BeFmt {
    pub inner: Fixed<8>,
    pub mapper: (FnSpec<(Seq<u8>,), i64>, FnSpec<(i64,), Seq<u8>>),
}

Fields§

§inner: Fixed<8>

The inner combinator whose values are being transformed.

§mapper: (FnSpec<(Seq<u8>,), i64>, FnSpec<(i64,), Seq<u8>>)

The mapping between the inner and outer value types.