pub trait AuthenticationRequestExt: IsA<AuthenticationRequest> + Sealed + 'static {
Show 15 methods // Provided methods fn can_save_credentials(&self) -> bool { ... } fn cancel(&self) { ... } fn certificate_pin_flags(&self) -> TlsPasswordFlags { ... } fn host(&self) -> Option<GString> { ... } fn port(&self) -> u32 { ... } fn proposed_credential(&self) -> Option<Credential> { ... } fn realm(&self) -> Option<GString> { ... } fn scheme(&self) -> AuthenticationScheme { ... } fn security_origin(&self) -> Option<SecurityOrigin> { ... } fn is_for_proxy(&self) -> bool { ... } fn is_retry(&self) -> bool { ... } fn set_can_save_credentials(&self, enabled: bool) { ... } fn set_proposed_credential(&self, credential: &mut Credential) { ... } fn connect_authenticated<F: Fn(&Self, &Credential) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_cancelled<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn can_save_credentials(&self) -> bool

Available on crate feature v2_2 only.
source

fn cancel(&self)

Available on crate feature v2_2 only.
source

fn certificate_pin_flags(&self) -> TlsPasswordFlags

Available on crate feature v2_34 only.
source

fn host(&self) -> Option<GString>

Available on crate feature v2_2 only.
source

fn port(&self) -> u32

Available on crate feature v2_2 only.
source

fn proposed_credential(&self) -> Option<Credential>

Available on crate feature v2_2 only.
source

fn realm(&self) -> Option<GString>

Available on crate feature v2_2 only.
source

fn scheme(&self) -> AuthenticationScheme

Available on crate feature v2_2 only.
source

fn security_origin(&self) -> Option<SecurityOrigin>

Available on crate feature v2_30 only.
source

fn is_for_proxy(&self) -> bool

Available on crate feature v2_2 only.
source

fn is_retry(&self) -> bool

Available on crate feature v2_2 only.
source

fn set_can_save_credentials(&self, enabled: bool)

Available on crate feature v2_30 only.
source

fn set_proposed_credential(&self, credential: &mut Credential)

Available on crate feature v2_30 only.
source

fn connect_authenticated<F: Fn(&Self, &Credential) + 'static>( &self, f: F ) -> SignalHandlerId

Available on crate feature v2_30 only.
source

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

Available on crate feature v2_2 only.

Object Safety§

This trait is not object safe.

Implementors§