pub struct CredentialFieldSet {
pub has_username: bool,
pub has_password: bool,
pub has_totp: bool,
pub has_uri: bool,
pub has_notes: bool,
}Expand description
Describes which credential fields were included in an approved response.
Contains only presence flags, never actual credential values. Useful for audit trails that need to record what kind of data was shared without logging sensitive material.
Fields§
§has_username: bool§has_password: bool§has_totp: bool§has_uri: bool§has_notes: boolTrait Implementations§
Source§impl Clone for CredentialFieldSet
impl Clone for CredentialFieldSet
Source§fn clone(&self) -> CredentialFieldSet
fn clone(&self) -> CredentialFieldSet
Returns a duplicate of the value. Read more
1.0.0 · 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 CredentialFieldSet
impl Debug for CredentialFieldSet
Source§impl Default for CredentialFieldSet
impl Default for CredentialFieldSet
Source§fn default() -> CredentialFieldSet
fn default() -> CredentialFieldSet
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CredentialFieldSet
impl RefUnwindSafe for CredentialFieldSet
impl Send for CredentialFieldSet
impl Sync for CredentialFieldSet
impl Unpin for CredentialFieldSet
impl UnsafeUnpin for CredentialFieldSet
impl UnwindSafe for CredentialFieldSet
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