Trait 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 { ... }
}

Provided 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

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.

Implementors§