Trait rust_3d::traits::IsFilter [] [src]

pub trait IsFilter<T> {
    fn is_allowed(&self, x: &T) -> bool;
}

IsFilter trait used for filters

Required Methods

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

Implementors