Struct futures_signals::signal_vec::DelayRemove[][src]

#[must_use = "SignalVecs do nothing unless polled"]
pub struct DelayRemove<A, B, F> where
    A: SignalVec
{ /* fields omitted */ }

Trait Implementations

impl<A: Debug, B: Debug, F: Debug> Debug for DelayRemove<A, B, F> where
    A: SignalVec,
    A::Item: Debug
[src]

impl<S, A, F> SignalVec for DelayRemove<S, A, F> where
    S: SignalVec,
    A: Future<Output = ()>,
    F: FnMut(&S::Item) -> A, 
[src]

type Item = S::Item

impl<'pin, A, B, F> Unpin for DelayRemove<A, B, F> where
    A: SignalVec,
    __DelayRemove<'pin, A, B, F>: Unpin
[src]

Auto Trait Implementations

impl<A, B, F> RefUnwindSafe for DelayRemove<A, B, F> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    <A as SignalVec>::Item: RefUnwindSafe

impl<A, B, F> Send for DelayRemove<A, B, F> where
    A: Send,
    B: Send,
    F: Send,
    <A as SignalVec>::Item: Send

impl<A, B, F> Sync for DelayRemove<A, B, F> where
    A: Sync,
    B: Sync,
    F: Sync,
    <A as SignalVec>::Item: Sync

impl<A, B, F> UnwindSafe for DelayRemove<A, B, F> where
    A: UnwindSafe,
    B: UnwindSafe,
    F: UnwindSafe,
    <A as SignalVec>::Item: UnwindSafe

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> SignalVecExt for T where
    T: SignalVec + ?Sized
[src]

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.