Trait ux::prelude::TlsPasswordExt[]

pub trait TlsPasswordExt: 'static {
    pub fn get_description(&self) -> Option<GString>;
pub fn get_flags(&self) -> TlsPasswordFlags;
pub fn get_warning(&self) -> Option<GString>;
pub fn set_description(&self, description: &str);
pub fn set_flags(&self, flags: TlsPasswordFlags);
pub fn set_warning(&self, warning: &str);
pub fn connect_property_description_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_flags_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_warning_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
; }

Required methods

pub fn get_description(&self) -> Option<GString>

pub fn get_flags(&self) -> TlsPasswordFlags

pub fn get_warning(&self) -> Option<GString>

pub fn set_description(&self, description: &str)

pub fn set_flags(&self, flags: TlsPasswordFlags)

pub fn set_warning(&self, warning: &str)

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

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

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

Loading content...

Implementors

impl<O> TlsPasswordExt for O where
    O: IsA<TlsPassword>, 

Loading content...