pub trait FromParseableStr<'s, B: Backing + 's>: Sized{
// Required method
fn from_parseable_str(
s: &ParseableStr<'s, B>,
) -> Result<Self, ParseError<StringParseContext<&'s B>>>;
}Required Methods§
fn from_parseable_str( s: &ParseableStr<'s, B>, ) -> Result<Self, ParseError<StringParseContext<&'s B>>>
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.