pub struct WebCredential {
pub username: String,
pub resource: String,
pub password: String,
}Expand description
A decoded web credential (VAULT_INTERNET_EXPLORER schema).
Fields§
§username: String§resource: String§password: StringTrait Implementations§
Source§impl Clone for WebCredential
impl Clone for WebCredential
Source§fn clone(&self) -> WebCredential
fn clone(&self) -> WebCredential
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WebCredential
impl Debug for WebCredential
impl Eq for WebCredential
Source§impl PartialEq for WebCredential
impl PartialEq for WebCredential
Source§fn eq(&self, other: &WebCredential) -> bool
fn eq(&self, other: &WebCredential) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebCredential
Auto Trait Implementations§
impl Freeze for WebCredential
impl RefUnwindSafe for WebCredential
impl Send for WebCredential
impl Sync for WebCredential
impl Unpin for WebCredential
impl UnsafeUnpin for WebCredential
impl UnwindSafe for WebCredential
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more