pub struct RemovedEntry {
pub entry: Entry,
pub path: String,
}Expand description
An entry whose id vanished from the new data, together with the composite path it had while attached (detached entries would otherwise report a bare id).
Fields§
§entry: EntryThe detached entry, subtree intact.
path: StringThe composite path the entry had before the update.
Trait Implementations§
Source§impl Clone for RemovedEntry
impl Clone for RemovedEntry
Source§fn clone(&self) -> RemovedEntry
fn clone(&self) -> RemovedEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemovedEntry
impl RefUnwindSafe for RemovedEntry
impl Send for RemovedEntry
impl Sync for RemovedEntry
impl Unpin for RemovedEntry
impl UnsafeUnpin for RemovedEntry
impl UnwindSafe for RemovedEntry
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