Struct argparsnip::Filter[][src]

pub struct Filter<'a> {
    pub inverse: bool,
    pub filter_type: FilterType,
    pub args: Vec<&'a str>,
}
Expand description

A specific combination of args that must be matched in Filters. E.g Filter { args: vec![“foo”, “bar”], filter_type: Any} will pass on foo | bar E.g Filter { args: vec![“foo”, “bar”], filter_type: All} will only pass on foo & bar E.g Filter { args: vec![“foo”, “bar”], filter_type: Any, inverse: true} will pass on foo ^ bar E.g Filter { args: vec![“foo”, “bar”], filter_type: All, inverse: true} will only pass on !(foo & bar)

Fields

inverse: boolfilter_type: FilterTypeargs: Vec<&'a str>

A list of Arg names to filter on.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.