pub trait ParseFrom<I, E = Error<I>>where
Self: Sized,{
// Required method
fn parse(input: I) -> IResult<I, Self, E>;
}Expand description
#nom-parsable
A trait for types that can be parsed from the given input.
Required Methods§
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.