[][src]Struct rust_3d::FilterAND

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

FilterAND, a filter which combines two filters and is true if both of its filters are true

Implementations

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

pub fn new(filter1: F1, filter2: F2) -> Self[src]

Creates a new FilterAND from two other IsFilter

Trait Implementations

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

Auto Trait Implementations

impl<F1, F2, T> RefUnwindSafe for FilterAND<F1, F2, T> where
    F1: RefUnwindSafe,
    F2: RefUnwindSafe,
    T: RefUnwindSafe

impl<F1, F2, T> Send for FilterAND<F1, F2, T> where
    F1: Send,
    F2: Send,
    T: Send

impl<F1, F2, T> Sync for FilterAND<F1, F2, T> where
    F1: Sync,
    F2: Sync,
    T: Sync

impl<F1, F2, T> Unpin for FilterAND<F1, F2, T> where
    F1: Unpin,
    F2: Unpin,
    T: Unpin

impl<F1, F2, T> UnwindSafe for FilterAND<F1, F2, T> where
    F1: UnwindSafe,
    F2: UnwindSafe,
    T: UnwindSafe

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<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.