Trait oddio::FilterHaving[][src]

pub trait FilterHaving<T, Index> {
    fn get(&self) -> &T;
}

Filter chains that contain a T at any position

Helper trait for Handle::control(). Index is Here or There, and can generally be inferred.

Required methods

fn get(&self) -> &T[src]

Get the T element of a filter chain

Loading content...

Implementors

impl<T> FilterHaving<T, Here> for T[src]

impl<T: Filter, U, I> FilterHaving<U, There<I>> for T where
    T::Inner: FilterHaving<U, I>, 
[src]

Loading content...