Struct argparsnip::Filters[][src]

pub struct Filters<'a> {
    pub filter_type: FilterType,
    pub filters: Vec<Filter<'a>>,
    pub inverse: bool,
}

Collection of filters used to constrain the combinations of arguments that can be matched. For example, to say we cannot get both args A && B, or we can only be passed C if we’ve also been passed D.

Fields

filter_type: FilterTypefilters: Vec<Filter<'a>>inverse: bool

Trait Implementations

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Filters<'a>

impl<'a> Send for Filters<'a>

impl<'a> Sync for Filters<'a>

impl<'a> Unpin for Filters<'a>

impl<'a> UnwindSafe for Filters<'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.