Struct filters::ops::not::Not [] [src]

#[must_use = "filters are lazy and do nothing unless consumed"]
pub struct Not<T>(_);

Methods

impl<T> Not<T>
[src]

[src]

Trait Implementations

impl<T: Clone> Clone for Not<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<I, T: Filter<I>> Filter<I> for Not<T>
[src]

[src]

The function which is used to filter something

[src]

Helper to invert a filter. Read more

[src]

Helper to connect two filters via logical OR Read more

[src]

Helper to connect two filters via logical OR and NOT Read more

[src]

Helper to connect three filters via logical OR Read more

[src]

Helper to connect two filters via logical NOR Read more

[src]

Helper to connect two filters via logical XOR Read more

[src]

Helper to connect two filters via logical AND Read more

[src]

Helper to connect three filters via logical AND Read more

[src]

Helper to connect two filters via logical AND and NOT Read more

[src]

Helper to connect two filters via logical NAND Read more

[src]

Helper to transform the input of a filter Read more

[src]

Helper to transform a filter into a FailableFilter Read more

[src]

Helper to borrow a filter as a FailbleFilter Read more

Auto Trait Implementations

impl<T> Send for Not<T> where
    T: Send

impl<T> Sync for Not<T> where
    T: Sync