pub trait Signal:
'static
+ Send
+ Sync { }Expand description
§Signal
A Signal is what can be used as the output of an Observable or as the input of an [Observer][crate::Observer]
§Trait Bounds
'static: Signals must always outlive their subscribersSend + Sync: Must be able to cross thread boundaries