Expand description
Types that define the reactive graph itself. These are mostly internal, but can be used to create custom reactive primitives.
Structs§
- A weak reference to any reactive source node.
- A type-erased subscriber.
- The current reactive observer.
Enums§
- The current state of a reactive node.
Traits§
- A node in the reactive graph.
- Describes the behavior of any source of reactivity (like a signal, trigger, or memo.)
- Any type that can track reactive values (like an effect or a memo).
- Abstracts over the type of any reactive source.
- Converts a
Subscriber
to a type-erasedAnySubscriber
. - Runs code with some subscriber as the thread-local
Observer
.
Functions§
- Suspends reactive tracking while running the given function.