Trait chomp::primitives::IntoInner [] [src]

pub trait IntoInner {
    type Inner;
    fn into_inner(self) -> Self::Inner;
}

Consumes self and reveals the inner state.

Primitive

Only used by fundamental parsers and combinators.

Associated Types

The inner type to be revealed.

Required Methods

Primitive: Consumes self and reveals the inner state.

Primitive

Only used by fundamental parsers and combinators.

Implementors