Skip to main content

I64LeFmt

Type Alias I64LeFmt 

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

Aliased Type§

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