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

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

Trait Implementations

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<A, B, F> Unpin for DelayRemove<A, B, F> where
    A: Unpin + SignalVec
[src]

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

Auto Trait Implementations

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> RefUnwindSafe for DelayRemove<A, B, F> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    <A as SignalVec>::Item: RefUnwindSafe

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

fn map<A, F>(self, callback: F) -> Map<Self, F> where
    F: FnMut(Self::Item) -> A,
    Self: Sized
[src]

Creates a SignalVec which uses a closure to transform the values. Read more

fn map_signal<A, F>(self, callback: F) -> MapSignal<Self, A, F> where
    A: Signal,
    F: FnMut(Self::Item) -> A,
    Self: Sized
[src]

fn filter<F>(self, callback: F) -> Filter<Self, F> where
    F: FnMut(&Self::Item) -> bool,
    Self: Sized
[src]

Creates a SignalVec which uses a closure to determine if a value should be included or not. Read more

fn filter_signal_cloned<A, F>(
    self,
    callback: F
) -> FilterSignalCloned<Self, A, F> where
    A: Signal<Item = bool>,
    F: FnMut(&Self::Item) -> A,
    Self: Sized
[src]

fn sum(self) -> SumSignal<Self> where
    Self::Item: for<'a> Sum<&'a Self::Item>,
    Self: Sized
[src]

fn sort_by_cloned<F>(self, compare: F) -> SortByCloned<Self, F> where
    F: FnMut(&Self::Item, &Self::Item) -> Ordering,
    Self: Sized
[src]

Creates a SignalVec which uses a closure to sort the values. Read more

fn to_stream(self) -> SignalVecStream<Self> where
    Self: Sized
[src]

Important traits for ForEach<A, B, C>
fn for_each<U, F>(self, callback: F) -> ForEach<Self, U, F> where
    U: Future<Output = ()>,
    F: FnMut(VecDiff<Self::Item>) -> U,
    Self: Sized
[src]

fn len(self) -> Len<Self> where
    Self: Sized
[src]

fn enumerate(self) -> Enumerate<Self> where
    Self: Sized
[src]

fn delay_remove<A, F>(self, f: F) -> DelayRemove<Self, A, F> where
    A: Future<Output = ()>,
    F: FnMut(&Self::Item) -> A,
    Self: Sized
[src]

fn poll_vec_change_unpin(
    &mut self,
    cx: &mut Context
) -> Poll<Option<VecDiff<Self::Item>>> where
    Self: Unpin + Sized
[src]

A convenience for calling SignalVec::poll_vec_change on Unpin types.

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.

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

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

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