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;
}
Expand description

Trait containing all TlsPassword methods.

Implementors

TlsPassword

Required Methods§

source

fn description(&self) -> GString

Get a description string about what the password will be used for.

Returns

The description of the password.

source

fn flags(&self) -> TlsPasswordFlags

Get flags about the password.

Returns

The flags about the password.

source

fn warning(&self) -> GString

Get a user readable translated warning. Usually this warning is a representation of the password flags returned from flags().

Returns

The warning.

source

fn set_description(&self, description: &str)

Set a description string about what the password will be used for.

description

The description of the password

source

fn set_flags(&self, flags: TlsPasswordFlags)

Set flags about the password.

flags

The flags about the password

source

fn set_warning(&self, warning: &str)

Set a user readable translated warning. Usually this warning is a representation of the password flags returned from flags().

warning

The user readable warning

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§