[][src]Struct seed_hooks::FilterVec

pub struct FilterVec<T, U, A> where
    A: 'static,
    T: 'static,
    U: 'static, 
{ /* fields omitted */ }

Implementations

impl<T, U, A> FilterVec<T, U, A> where
    T: 'static, 
[src]

pub fn iter(&self) -> FilterVecIterator<T, U, A>[src]

Trait Implementations

impl<T, U, A> Clone for FilterVec<T, U, A> where
    A: 'static,
    T: 'static, 
[src]

Auto Trait Implementations

impl<T, U, A> RefUnwindSafe for FilterVec<T, U, A> where
    A: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe

impl<T, U, A> Send for FilterVec<T, U, A> where
    A: Send,
    T: Send,
    U: Send

impl<T, U, A> Sync for FilterVec<T, U, A> where
    A: Sync,
    T: Sync,
    U: Sync

impl<T, U, A> Unpin for FilterVec<T, U, A> where
    A: Unpin,
    T: Unpin,
    U: Unpin

impl<T, U, A> UnwindSafe for FilterVec<T, U, A> where
    A: UnwindSafe,
    T: UnwindSafe,
    U: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> Erased for T

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

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

impl<T> Sealed<T> for T where
    T: ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,