Trait rust_3d::traits::IsFilterRandomAccessible
[−]
[src]
pub trait IsFilterRandomAccessible<RA, T> where
RA: IsRandomAccessible<T>, { fn filter(&self, ra: &RA, view: &mut View); }
IsFilterRandomAccessible is a trait used for filters for random accessible collections
Required Methods
fn filter(&self, ra: &RA, view: &mut View)
Should filter the passed elements by setting the flags within the view
Implementors
impl<RA, T> IsFilterRandomAccessible<RA, T> for FilterAllRandomAccessible<RA, T> where
RA: IsRandomAccessible<T>,impl<RA, T> IsFilterRandomAccessible<RA, T> for FilterAnyRandomAccessible<RA, T> where
RA: IsRandomAccessible<T>,impl<F, T, RA> IsFilterRandomAccessible<RA, T> for FilterRandomAccessible<F, T> where
F: IsFilter<T>,
RA: IsRandomAccessible<T>,