pub trait __ToTriple<'input, 'err> {
// Required method
fn to_triple(
value: Self,
) -> Result<(usize, Token<'input>, usize), ParseError<usize, Token<'input>, &'static str>>;
}
Required Methods§
fn to_triple( value: Self, ) -> Result<(usize, Token<'input>, usize), ParseError<usize, Token<'input>, &'static str>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.