[][src]Struct moore::grind::Filter

pub struct Filter<T, F> where
    T: Grinder
{ /* fields omitted */ }

Implementations

impl<T, F> Filter<T, F> where
    T: Grinder
[src]

pub fn new(inner: T, func: F) -> Filter<T, F>[src]

Trait Implementations

impl<T, F> Grinder for Filter<T, F> where
    T: Grinder,
    F: Fn(&<<T as Grinder>::Item as Chisel>::Value) -> bool
[src]

type Item = <T as Grinder>::Item

type Error = <T as Grinder>::Error

Auto Trait Implementations

impl<T, F> RefUnwindSafe for Filter<T, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<T, F> Send for Filter<T, F> where
    F: Send,
    T: Send
[src]

impl<T, F> Sync for Filter<T, F> where
    F: Sync,
    T: Sync
[src]

impl<T, F> Unpin for Filter<T, F> where
    F: Unpin,
    T: Unpin
[src]

impl<T, F> UnwindSafe for Filter<T, F> where
    F: UnwindSafe,
    T: UnwindSafe
[src]

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> Pointable for T

type Init = T

The type for initializers.

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.