Expand description
§Reactive Bindings
This module provides two-way reactive bindings that can both produce and consume values. Unlike read-only signals, bindings can be modified and will notify watchers of changes.
Structs§
- Binding
- A
Binding<T>represents a mutable value of typeTthat can be observed. - Binding
Mailbox - A handle for interacting with a background mailbox tied to a
Binding. - Binding
MutGuard - A guard that provides mutable access to a binding’s value.
- Container
- A container for a value that can be observed.
Traits§
- Custom
Binding - The
CustomBindingtrait represents a computable value that can also be set.
Functions§
- binding
- Creates a new binding from a value with automatic type conversion.