Skip to main content

I32LeFmt

Type Alias I32LeFmt 

Source
pub type I32LeFmt = Mapped<Fixed<4>, FnSpecMapper<Seq<u8>, i32>>;

Aliased Type§

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