Crate eyeball_im
source ·Expand description
Observable collections based on the im
crate.
Cargo features:
tracing
: Emit tracing events when updates are sent out
Re-exports§
pub use imbl::Vector;
Structs§
- An ordered list of elements that broadcasts any changes made to it.
- An “iterator“¹ that yields entries into an
ObservableVector
. - A handle to a single value in an
ObservableVector
. - A transaction that allows making multiple updates to an
ObservableVector
as an atomic unit. - An “iterator“¹ that yields entries into an
ObservableVector
, obtained from a transaction. - A handle to a single value in an
ObservableVector
, obtained from a transaction. - A subscriber for updates of a
Vector
. - A batched stream of
VectorDiff
s created from aVectorSubscriber
. - A stream of
VectorDiff
s created from aVectorSubscriber
.
Enums§
- A change to an
ObservableVector
.