pub trait UntrackableGuard: DerefMut {
// Required method
fn untrack(&mut self);
}Expand description
A reactive, mutable guard that can be untracked to prevent it from notifying subscribers when it is dropped.
Required Methods§
Trait Implementations§
Source§impl<T> UntrackableGuard for Box<dyn UntrackableGuard<Target = T>>
impl<T> UntrackableGuard for Box<dyn UntrackableGuard<Target = T>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".