pub trait Parser<I> {
type Cli: Args;
type Output: Stream<Item = Result<Feature>> + 'static;
fn parse(self, input: I, cli: Self::Cli) -> Self::Output;
}Expand description
Source of parsed Features.
pub trait Parser<I> {
type Cli: Args;
type Output: Stream<Item = Result<Feature>> + 'static;
fn parse(self, input: I, cli: Self::Cli) -> Self::Output;
}Source of parsed Features.