[][src]Struct rust_3d::FilterAnyRandomAccessible

pub struct FilterAnyRandomAccessible<RA, T> where
    RA: IsRandomAccessible<T>, 
{ pub filters: Vec<Box<dyn IsFilterRandomAccessible<RA, T>>>, }

FilterAnyRandomAccessible, a filter to chain multiple IsFilterRandomAccessible with the or condition => must pass any filter to pass this filter

Fields

filters: Vec<Box<dyn IsFilterRandomAccessible<RA, T>>>

Trait Implementations

impl<RA: Default, T: Default> Default for FilterAnyRandomAccessible<RA, T> where
    RA: IsRandomAccessible<T>, 
[src]

impl<RA, T> IsFilterRandomAccessible<RA, T> for FilterAnyRandomAccessible<RA, T> where
    RA: IsRandomAccessible<T>, 
[src]

Auto Trait Implementations

impl<RA, T> !RefUnwindSafe for FilterAnyRandomAccessible<RA, T>

impl<RA, T> !Send for FilterAnyRandomAccessible<RA, T>

impl<RA, T> !Sync for FilterAnyRandomAccessible<RA, T>

impl<RA, T> Unpin for FilterAnyRandomAccessible<RA, T>

impl<RA, T> !UnwindSafe for FilterAnyRandomAccessible<RA, T>

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.