Trait Inner

Source
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§

Source

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", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Inner for Option<DataInner>

Source§

impl Inner for String

Source§

impl<E: Element> Inner for Option<E>

Source§

impl<E: Element> Inner for Vec<E>

Implementors§