[][src]Trait rust_3d::IsFilterRandomAccessible

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

Loading content...

Implementors

impl<F, T, RA> IsFilterRandomAccessible<RA, T> for FilterRandomAccessible<F, T> where
    F: IsFilter<T>,
    RA: IsRandomAccessible<T>, 
[src]

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

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

Loading content...