Struct webkit2gtk::Credential
source · [−]#[repr(transparent)]pub struct Credential { /* private fields */ }
Expand description
Groups information used for user authentication.
Implementations
sourceimpl Credential
impl Credential
pub fn as_ptr(&self) -> *mut WebKitCredential
sourceimpl Credential
impl Credential
sourcepub fn new(
username: &str,
password: &str,
persistence: CredentialPersistence
) -> Credential
Available on crate feature v2_2
only.
pub fn new(
username: &str,
password: &str,
persistence: CredentialPersistence
) -> Credential
v2_2
only.Create a new credential from the provided username, password and persistence mode.
username
The username for the new credential
password
The password for the new credential
persistence
The CredentialPersistence
of the new credential
Returns
A Credential
.
sourcepub fn for_certificate(
certificate: Option<&impl IsA<TlsCertificate>>,
persistence: CredentialPersistence
) -> Credential
Available on crate feature v2_34
only.
pub fn for_certificate(
certificate: Option<&impl IsA<TlsCertificate>>,
persistence: CredentialPersistence
) -> Credential
v2_34
only.Create a new credential from the certificate
and persistence mode.
Note that CredentialPersistence::Permanent
is not supported for certificate credentials.
certificate
The gio::TlsCertificate
, or None
persistence
The CredentialPersistence
of the new credential
Returns
A Credential
.
sourcepub fn for_certificate_pin(
pin: &str,
persistence: CredentialPersistence
) -> Credential
Available on crate feature v2_34
only.
pub fn for_certificate_pin(
pin: &str,
persistence: CredentialPersistence
) -> Credential
v2_34
only.Create a new credential from the provided PIN and persistence mode.
Note that CredentialPersistence::Permanent
is not supported for certificate pin credentials.
pin
The PIN for the new credential
persistence
The CredentialPersistence
of the new credential
Returns
A Credential
.
sourcepub fn certificate(&mut self) -> Option<TlsCertificate>
Available on crate feature v2_34
only.
pub fn certificate(&mut self) -> Option<TlsCertificate>
v2_34
only.sourcepub fn persistence(&mut self) -> CredentialPersistence
Available on crate feature v2_2
only.
pub fn persistence(&mut self) -> CredentialPersistence
v2_2
only.Get the persistence mode currently held by this Credential
.
Returns
The CredentialPersistence
stored in the Credential
.
Trait Implementations
sourceimpl Clone for Credential
impl Clone for Credential
sourceimpl Debug for Credential
impl Debug for Credential
sourceimpl Hash for Credential
impl Hash for Credential
sourceimpl Ord for Credential
impl Ord for Credential
sourcefn cmp(&self, other: &Credential) -> Ordering
fn cmp(&self, other: &Credential) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<Credential> for Credential
impl PartialEq<Credential> for Credential
sourcefn eq(&self, other: &Credential) -> bool
fn eq(&self, other: &Credential) -> bool
sourceimpl PartialOrd<Credential> for Credential
impl PartialOrd<Credential> for Credential
sourcefn partial_cmp(&self, other: &Credential) -> Option<Ordering>
fn partial_cmp(&self, other: &Credential) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresourceimpl StaticType for Credential
impl StaticType for Credential
sourcefn static_type() -> Type
fn static_type() -> Type
Self
.