pub trait ExtRefCellExt {
    type Target;

    // Required method
    fn get_mut(&mut self) -> &mut Self::Target;
}

Required Associated Types§

Required Methods§

source

fn get_mut(&mut self) -> &mut Self::Target

Implementors§

source§

impl<T, D: Deref<Target = ExtRefCell<T>>> ExtRefCellExt for D

§

type Target = T