pub struct Snapshot {
pub file_hashes: Arc<Mutex<HashMap<String, FileMetadata>>>,
pub black_list: Vec<String>,
pub root_path: String,
pub hash_type: HashType,
pub uuid: String,
pub date_created: i64,
}
Fields§
§file_hashes: Arc<Mutex<HashMap<String, FileMetadata>>>
§black_list: Vec<String>
§root_path: String
§hash_type: HashType
§uuid: String
§date_created: i64
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Snapshot
impl RefUnwindSafe for Snapshot
impl Send for Snapshot
impl Sync for Snapshot
impl Unpin for Snapshot
impl UnwindSafe for Snapshot
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