pub struct TrashEntry {
pub inode_id: InodeId,
pub inode_kind: InodeKind,
pub deletion_seq: ChangeSeq,
pub deleted_at_ms: u64,
pub deleted_by: ActorId,
pub deleted_binding: DirectoryBinding,
}Expand description
One recoverable deletion and its removed directory binding.
Fields§
§inode_id: InodeIdInode hidden by the deletion.
inode_kind: InodeKindWhether the deleted root is a file or a directory.
deletion_seq: ChangeSeqCommit sequence that identifies this deletion.
deleted_at_ms: u64Time of the deletion, in Unix milliseconds.
deleted_by: ActorIdActor responsible for the deletion.
deleted_binding: DirectoryBindingDirectory binding removed by the deletion.
Trait Implementations§
Source§impl Clone for TrashEntry
impl Clone for TrashEntry
Source§impl Debug for TrashEntry
impl Debug for TrashEntry
Source§impl<'de> Deserialize<'de> for TrashEntry
impl<'de> Deserialize<'de> for TrashEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TrashEntry
Source§impl PartialEq for TrashEntry
impl PartialEq for TrashEntry
Source§impl Serialize for TrashEntry
impl Serialize for TrashEntry
impl StructuralPartialEq for TrashEntry
Auto Trait Implementations§
impl Freeze for TrashEntry
impl RefUnwindSafe for TrashEntry
impl Send for TrashEntry
impl Sync for TrashEntry
impl Unpin for TrashEntry
impl UnsafeUnpin for TrashEntry
impl UnwindSafe for TrashEntry
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