pub trait Inner: Sized {
type ParseState: InnerState<Output = Self>;
}Expand description
Parsable inner data (multiple elements)
This links the (default) state type used to parse this.
Required Associated Types§
Sourcetype ParseState: InnerState<Output = Self>
type ParseState: InnerState<Output = Self>
Parse state to use for this inner data
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".