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

Required Methods§

source

fn value(&self) -> Option<Value>

source

fn connect_cleared<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Implementors§