Skip to main content

__ToTriple

Trait __ToTriple 

Source
pub trait __ToTriple<'input, B> {
    // Required method
    fn to_triple(
        value: Self,
    ) -> Result<(usize, Tok<'input>, usize), ParseError<usize, Tok<'input>, LexError>>;
}

Required Methods§

Source

fn to_triple( value: Self, ) -> Result<(usize, Tok<'input>, usize), ParseError<usize, Tok<'input>, LexError>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'input, B> __ToTriple<'input, B> for (usize, Tok<'input>, usize)

Source§

fn to_triple( value: Self, ) -> Result<(usize, Tok<'input>, usize), ParseError<usize, Tok<'input>, LexError>>

Source§

impl<'input, B> __ToTriple<'input, B> for Result<(usize, Tok<'input>, usize), LexError>

Source§

fn to_triple( value: Self, ) -> Result<(usize, Tok<'input>, usize), ParseError<usize, Tok<'input>, LexError>>

Implementors§