Expand description
Signals are like variables that update their dependencies.
Structs§
- Read
Signal - Receive changes from a signal.
- Signal
- A
Signalis like a varible, but it can update it’s dependencies when it changes. - Write
Signal - Write changes to a signal.
Traits§
- Signal
Receiver - Receive changes to a signal.
- ZipSignal
- Zip signals together to create a new one. The tuple implementation allows
you to write
(signal0, signal1).map(...).