Module binding

Module binding 

Source
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 type T that can be observed.
BindingMailbox
A handle for interacting with a background mailbox tied to a Binding.
BindingMutGuard
A guard that provides mutable access to a binding’s value.
Container
A container for a value that can be observed.

Traits§

CustomBinding
The CustomBinding trait represents a computable value that can also be set.

Functions§

binding
Creates a new binding from a value with automatic type conversion.