Trait gio::TlsPasswordExt [−][src]
pub trait TlsPasswordExt {
fn get_description(&self) -> Option<String>;
fn get_flags(&self) -> TlsPasswordFlags;
fn get_warning(&self) -> Option<String>;
fn set_description(&self, description: &str);
fn set_flags(&self, flags: TlsPasswordFlags);
fn set_warning(&self, warning: &str);
fn connect_property_description_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_flags_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_warning_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
fn get_description(&self) -> Option<String>
fn get_flags(&self) -> TlsPasswordFlags
fn get_warning(&self) -> Option<String>
fn set_description(&self, description: &str)
fn set_flags(&self, flags: TlsPasswordFlags)
fn set_warning(&self, warning: &str)
fn connect_property_description_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_flags_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_warning_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<TlsPassword> + IsA<Object>> TlsPasswordExt for O