[][src]Struct dominator::animation::MutableAnimationSignal

pub struct MutableAnimationSignal(_);

Trait Implementations

impl Debug for MutableAnimationSignal[src]

impl Signal for MutableAnimationSignal[src]

type Item = Percentage

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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> Borrow for T where
    T: ?Sized
[src]

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

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

impl<T, U> TryInto 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> SignalExt for T where
    T: Signal + ?Sized
[src]

fn to_stream(self) -> SignalStream<Self>[src]

Creates a Stream which contains the values of self. Read more

fn to_future(self) -> SignalFuture<Self>[src]

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

Creates a Signal which uses a closure to transform the value. Read more

fn inspect<A>(self, callback: A) -> Inspect<Self, A> where
    A: FnMut(&Self::Item), 
[src]

fn dedupe_map<A, B>(self, callback: B) -> DedupeMap<Self, B> where
    B: FnMut(&mut Self::Item) -> A, 
[src]

Creates a Signal which uses a closure to transform the value. Read more

fn dedupe(self) -> Dedupe<Self>[src]

fn dedupe_cloned(self) -> DedupeCloned<Self>[src]

fn map_future<A, B>(self, callback: B) -> MapFuture<Self, A, B> where
    A: Future,
    B: FnMut(Self::Item) -> A, 
[src]

Creates a Signal which uses a closure to asynchronously transform the value. Read more

fn filter_map<A, B>(self, callback: B) -> FilterMap<Self, B> where
    B: FnMut(Self::Item) -> Option<A>, 
[src]

Creates a Signal which uses a closure to filter and transform the value. Read more

fn flatten(self) -> Flatten<Self> where
    Self::Item: Signal
[src]

Creates a Signal which flattens self. Read more

fn switch<A, B>(self, callback: B) -> Switch<Self, A, B> where
    A: Signal,
    B: FnMut(Self::Item) -> A, 
[src]

fn for_each<U, F>(self, callback: F) -> ForEach<Self, U, F> where
    F: FnMut(Self::Item) -> U,
    U: Future<Output = ()>, 
[src]

fn to_signal_vec(self) -> SignalSignalVec<Self>[src]

fn wait_for(self, value: Self::Item) -> WaitFor<Self> where
    Self::Item: PartialEq<Self::Item>, 
[src]

fn first(self) -> First<Self>[src]

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

A convenience for calling Signal::poll_change on Unpin types.