pub trait __ToTriple {
// Required method
fn to_triple(
value: Self,
) -> Result<(Location, Token, Location), ParseError<Location, Token, UserParseError>>;
}
Required Methods§
fn to_triple( value: Self, ) -> Result<(Location, Token, Location), ParseError<Location, Token, UserParseError>>
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.