Trait CellOptionWeak

Source
trait CellOptionWeak<T> {
    // Required method
    fn upgrade(&self) -> Option<Rc<T>>;
}

Required Methods§

Source

fn upgrade(&self) -> Option<Rc<T>>

Implementations on Foreign Types§

Source§

impl<T> CellOptionWeak<T> for Cell<Option<Weak<T>>>

Source§

fn upgrade(&self) -> Option<Rc<T>>

Implementors§