pub struct GraphObserveAll { /* private fields */ }Expand description
All-nodes observe handle. Subscriptions are tied to the set of
nodes named at subscribe() call time. D246: no RAII Drop —
You MUST call Self::detach(core) (owner-invoked) — these Core
subscriptions are opened via raw core.subscribe and are NOT
OwnedCore-tracked, so dropping the handle without detach leaks
them for the Core lifetime.
Implementations§
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