Trait yarpl::Parse[][src]

pub trait Parse: Debug + Clone + Any {
    type Target;
    fn parse_from(parser: &mut Parser<'_>) -> Result<Self::Target>;
}
Expand description

A Parse may use a Parser to yield an associated Target type.

Associated Types

The type returned from parsing Self.

Required methods

What a parser will call to advance itself.

Implementors