pub trait TlsPasswordExt: IsA<TlsPassword> + '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>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_flags_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_warning_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + '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>(&self, f: F) -> SignalHandlerIdwhere
F: Fn(&Self) + 'static,
fn connect_flags_notify<F>(&self, f: F) -> SignalHandlerIdwhere
F: Fn(&Self) + 'static,
fn connect_warning_notify<F>(&self, f: F) -> SignalHandlerIdwhere
F: Fn(&Self) + 'static,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.