Trait gio::prelude::TlsPasswordExt
source · pub trait TlsPasswordExt: IsA<TlsPassword> + Sealed + 'static {
// Provided 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
Provided Methods§
sourcefn description(&self) -> GString
fn description(&self) -> GString
Get a description string about what the password will be used for.
Returns
The description of the password.
sourcefn flags(&self) -> TlsPasswordFlags
fn flags(&self) -> TlsPasswordFlags
sourcefn set_description(&self, description: &str)
fn set_description(&self, description: &str)
Set a description string about what the password will be used for.
description
The description of the password
sourcefn set_flags(&self, flags: TlsPasswordFlags)
fn set_flags(&self, flags: TlsPasswordFlags)
sourcefn set_warning(&self, warning: &str)
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
Object Safety§
This trait is not object safe.