Trait SignalExt

Source
pub trait SignalExt: Sized {
    // Provided method
    fn map<T, R, F>(self, f: F) -> MappedSignal<T, R, Self, F>
       where F: Fn(T) -> R,
             T: Clone { ... }
}

Provided Methods§

Source

fn map<T, R, F>(self, f: F) -> MappedSignal<T, R, Self, F>
where F: Fn(T) -> R, T: Clone,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl SignalExt for EmptySplitter

Source§

impl<T: Clone, U: Slot<T>, P> SignalExt for Splitter<T, U, P>