Skip to main content

I8Fmt

Type Alias I8Fmt 

Source
pub type I8Fmt = Mapped<Fixed<1>, FnSpecMapper<Seq<u8>, i8>>;

Aliased Type§

pub struct I8Fmt {
    pub inner: Fixed<1>,
    pub mapper: (FnSpec<(Seq<u8>,), i8>, FnSpec<(i8,), Seq<u8>>),
}

Fields§

§inner: Fixed<1>

The inner combinator whose values are being transformed.

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

The mapping between the inner and outer value types.