pub trait TlsPasswordExt: 'static {
    // Required methods
    fn description(&self) -> GString;
    fn flags(&self) -> TlsPasswordFlags;
    fn warning(&self) -> GString;
    fn set_description(&self, description: &str);
    fn set_flags(&self, flags: TlsPasswordFlags);
    fn set_warning(&self, warning: &str);
    fn connect_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_flags_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_warning_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn description(&self) -> GString

source

fn flags(&self) -> TlsPasswordFlags

source

fn warning(&self) -> GString

source

fn set_description(&self, description: &str)

source

fn set_flags(&self, flags: TlsPasswordFlags)

source

fn set_warning(&self, warning: &str)

source

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

source

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

source

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

Implementors§