pub trait TlsFileDatabaseExt: 'static {
    // Required methods
    fn anchors(&self) -> Option<GString>;
    fn set_anchors(&self, anchors: Option<&str>);
    fn connect_anchors_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn anchors(&self) -> Option<GString>

source

fn set_anchors(&self, anchors: Option<&str>)

source

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

Implementors§