pub struct ReactiveSub { /* private fields */ }Expand description
D246 rule 3: NO RAII unsubscribe below the binding. A subscription
bundle that tracks its (NodeId, SubscriptionId) subs and is torn
down by the owner-invoked, synchronous ReactiveSub::detach —
not Drop. Carries no &Core (the 'c lifetime is gone); the
owner passes its &Core into detach.
Implementations§
Auto Trait Implementations§
impl Freeze for ReactiveSub
impl RefUnwindSafe for ReactiveSub
impl Send for ReactiveSub
impl Sync for ReactiveSub
impl Unpin for ReactiveSub
impl UnsafeUnpin for ReactiveSub
impl UnwindSafe for ReactiveSub
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