Struct rust_3d::filters::combinators::FilterOR [] [src]

pub struct FilterOR<F1, F2, T> where
    F1: IsFilter<T>,
    F2: IsFilter<T>, 
{ /* fields omitted */ }

FilterOR, a filter which combines two filters and is true if one of its filters is true

Methods

impl<F1, F2, T> FilterOR<F1, F2, T> where
    F1: IsFilter<T>,
    F2: IsFilter<T>, 
[src]

Creates a new FilterOR from two other IsFilter

Trait Implementations

impl<F1, F2, T> IsFilter<T> for FilterOR<F1, F2, T> where
    F1: IsFilter<T>,
    F2: IsFilter<T>, 
[src]

Should return true if a it passes the filter, otherwise false