pub struct GraphObserveAll { /* private fields */ }Expand description
All-nodes observe handle. subscribe multiplexes across every
named node in the graph (NOT recursive into mounts — observers
wanting recursion compose with child.observe_all() per
subgraph).
The sink receives (name, &[Message]) tuples; name is the
local namespace name. Subscriptions stay tied to the set of
nodes named at observe_all() call time — late-added nodes
are NOT auto-subscribed in this slice (lifts with the reactive
observe topology-change primitive in a later slice).
Implementations§
Source§impl GraphObserveAll
impl GraphObserveAll
Auto Trait Implementations§
impl Freeze for GraphObserveAll
impl !RefUnwindSafe for GraphObserveAll
impl Send for GraphObserveAll
impl Sync for GraphObserveAll
impl Unpin for GraphObserveAll
impl UnsafeUnpin for GraphObserveAll
impl !UnwindSafe for GraphObserveAll
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more