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: bool
Whether title fields should be encrypted
protect_user_name: bool
Whether username fields should be encrypted
protect_password: bool
Whether password fields should be encrypted
protect_url: bool
Whether URL fields should be encrypted
protect_notes: bool
Whether 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 · 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
Source§impl PartialEq for MemoryProtection
impl PartialEq for MemoryProtection
impl Eq for MemoryProtection
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 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