pub struct MemoryProtection {
pub protect_title: bool,
pub protect_user_name: bool,
pub protect_password: bool,
pub protect_url: bool,
pub protect_notes: bool,
}Expand description
Identifies which fields are encrypted in memory for official clients
Fields§
§protect_title: boolWhether title fields should be encrypted
protect_user_name: boolWhether username fields should be encrypted
protect_password: boolWhether password fields should be encrypted
protect_url: boolWhether URL fields should be encrypted
protect_notes: boolWhether Notes fields should be encrypted
Trait Implementations§
Source§impl Clone for MemoryProtection
impl Clone for MemoryProtection
Source§fn clone(&self) -> MemoryProtection
fn clone(&self) -> MemoryProtection
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 MemoryProtection
impl Debug for MemoryProtection
Source§impl Default for MemoryProtection
impl Default for MemoryProtection
Source§fn default() -> MemoryProtection
fn default() -> MemoryProtection
Returns the “default value” for a type. Read more
impl Eq for MemoryProtection
Source§impl PartialEq for MemoryProtection
impl PartialEq for MemoryProtection
Source§fn eq(&self, other: &MemoryProtection) -> bool
fn eq(&self, other: &MemoryProtection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemoryProtection
Auto Trait Implementations§
impl Freeze for MemoryProtection
impl RefUnwindSafe for MemoryProtection
impl Send for MemoryProtection
impl Sync for MemoryProtection
impl Unpin for MemoryProtection
impl UnsafeUnpin for MemoryProtection
impl UnwindSafe for MemoryProtection
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