pub trait WatcherHolder<'ctx, O: ?Sized>: Clone {
type Content: ?Sized;
// Required method
fn get_mut<F, R>(&self, owner: &mut O, f: F) -> Option<R>
where F: FnOnce(&mut Self::Content) -> R;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.