pub trait Parseable {
type Parser: for<'i> Parser<Output<'i> = Self>;
const PARSER: Self::Parser;
}
Expand description
Trait for types that have a canonical parser.
Required Associated Types§
Required Associated Constants§
Object Safety§
This trait is not object safe.