[][src]Struct stork::filters::FilterSet

pub struct FilterSet<T> { /* fields omitted */ }

List of filters that can be used to filter down results from a Storkable. Once constructed, these can be attached using Storkable::with_filters.

Methods

impl<T> FilterSet<T>[src]

pub fn add_filter<F: Filter<T> + 'static>(self, filter: F) -> Self[src]

Filter results by a given predicate.

Trait Implementations

impl<T> Clone for FilterSet<T>[src]

We need to manually implement Clone for this struct because otherwise it won't be derived on values where T doesn't implement Clone (which would be an unnecessary restriction on our API as T is a type param on a method).

impl<T: Debug> Debug for FilterSet<T>[src]

impl<T> Default for FilterSet<T>[src]

fn default() -> Self[src]

Creates an empty filter set.

Auto Trait Implementations

impl<T> !RefUnwindSafe for FilterSet<T>

impl<T> !Send for FilterSet<T>

impl<T> !Sync for FilterSet<T>

impl<T> Unpin for FilterSet<T>

impl<T> !UnwindSafe for FilterSet<T>

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> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.