pub enum VaultEntry {
File(Note),
Directory {
name: String,
path: PathBuf,
entries: Vec<VaultEntry>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VaultEntry
impl Clone for VaultEntry
Source§fn clone(&self) -> VaultEntry
fn clone(&self) -> VaultEntry
Returns a copy 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 VaultEntry
impl Debug for VaultEntry
Source§impl FindNote for VaultEntry
impl FindNote for VaultEntry
Source§impl PartialEq for VaultEntry
impl PartialEq for VaultEntry
Source§impl TryFrom<&Path> for VaultEntry
impl TryFrom<&Path> for VaultEntry
impl StructuralPartialEq for VaultEntry
Auto Trait Implementations§
impl Freeze for VaultEntry
impl RefUnwindSafe for VaultEntry
impl Send for VaultEntry
impl Sync for VaultEntry
impl Unpin for VaultEntry
impl UnwindSafe for VaultEntry
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