Struct futures_signals::signal_vec::SumSignal[][src]

#[must_use = "Signals do nothing unless polled"]pub struct SumSignal<A> where
    A: SignalVec
{ /* fields omitted */ }

Trait Implementations

impl<A: Debug> Debug for SumSignal<A> where
    A: SignalVec,
    A::Item: Debug
[src]

impl<A> Signal for SumSignal<A> where
    A: SignalVec,
    A::Item: for<'a> Sum<&'a A::Item>, 
[src]

type Item = A::Item

impl<'pin, A> Unpin for SumSignal<A> where
    A: SignalVec,
    __SumSignal<'pin, A>: Unpin
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for SumSignal<A> where
    A: RefUnwindSafe,
    <A as SignalVec>::Item: RefUnwindSafe

impl<A> Send for SumSignal<A> where
    A: Send,
    <A as SignalVec>::Item: Send

impl<A> Sync for SumSignal<A> where
    A: Sync,
    <A as SignalVec>::Item: Sync

impl<A> UnwindSafe for SumSignal<A> where
    A: 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, 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.