pub struct TrashedItem {
pub original_path: PathBuf,
pub trashed_path: PathBuf,
pub info_path: PathBuf,
pub trash_dir: PathBuf,
pub size_bytes: Option<u64>,
pub deleted_at: Option<DateTime<Utc>>,
}Fields§
§original_path: PathBuf§trashed_path: PathBuf§info_path: PathBuf§trash_dir: PathBuf§size_bytes: Option<u64>§deleted_at: Option<DateTime<Utc>>Implementations§
Trait Implementations§
Source§impl Clone for TrashedItem
impl Clone for TrashedItem
Source§fn clone(&self) -> TrashedItem
fn clone(&self) -> TrashedItem
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 moreAuto Trait Implementations§
impl Freeze for TrashedItem
impl RefUnwindSafe for TrashedItem
impl Send for TrashedItem
impl Sync for TrashedItem
impl Unpin for TrashedItem
impl UnsafeUnpin for TrashedItem
impl UnwindSafe for TrashedItem
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