pub trait WatcherHolder<'ctx, O: ?Sized>: Clone {
    type Content: ?Sized;

    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

Implementations on Foreign Types

Implementors