pub trait Propagate<S, T, U> {
    fn propagate<'a>(
        &self,
        source: S,
        input: &'a str,
        data: T
    ) -> IResult<&'a str, U, CommandError<'a>>; }
Expand description

Command parser propagation entrypoint.

Generally not used by the end user.

Required Methods

Implementors