pub struct FolderRecord {
pub row_id: i64,
pub created_at: UtcDateTime,
pub modified_at: UtcDateTime,
pub salt: Option<String>,
pub meta: Option<AeadPack>,
pub seed: Option<Seed>,
pub summary: Summary,
}Expand description
Folder record from the database.
Fields§
§row_id: i64Row identifier.
created_at: UtcDateTimeCreated date and time.
modified_at: UtcDateTimeModified date and time.
salt: Option<String>Key derivation salt.
meta: Option<AeadPack>Folder meta data.
seed: Option<Seed>Optional seed entropy.
summary: SummaryFolder summary.
Implementations§
Trait Implementations§
Source§impl Clone for FolderRecord
impl Clone for FolderRecord
Source§fn clone(&self) -> FolderRecord
fn clone(&self) -> FolderRecord
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 moreAuto Trait Implementations§
impl Freeze for FolderRecord
impl RefUnwindSafe for FolderRecord
impl Send for FolderRecord
impl Sync for FolderRecord
impl Unpin for FolderRecord
impl UnwindSafe for FolderRecord
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