Struct experimental_reactive::split::EmptySplitter [] [src]

pub struct EmptySplitter;

Splitter just pass value to all connected slots EmptySplitter is disconnected spliiter type

Trait Implementations

impl SignalExt for EmptySplitter
[src]

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

impl<T, S> Signal<T, S> for EmptySplitter where T: Clone, S: Slot<T>
[src]

type Connected = Splitter<T, S, Self>

fn connect_slot(self, slot: S) -> Splitter<T, S, Self>

impl<T> Slot<T> for EmptySplitter where T: Clone
[src]

fn push(&self, value: T) -> Result<()SlotError<T>>