Struct argparsnip::Filter[][src]

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

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

impl<'a> Default for Filter<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Filter<'a>

impl<'a> Send for Filter<'a>

impl<'a> Sync for Filter<'a>

impl<'a> Unpin for Filter<'a>

impl<'a> UnwindSafe for Filter<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<'a, T> Handler<'a, T> for T where
    T: Default
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.