pub trait WeakValueExt: 'static {
    fn value(&self) -> Option<Value>;
    fn connect_cleared<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}

Required Methods§

Implementors§