pub struct TreeEntryInspection {
pub path: String,
pub name: String,
pub kind: TreeEntryKind,
pub revision: u64,
}Expand description
Bounded identity facts for one immediate expression-tree entry.
Fields§
§path: StringCanonical absolute path.
name: StringFinal canonical path segment.
kind: TreeEntryKindEntry kind.
revision: u64Source revision for a cell, or zero for a directory.
Trait Implementations§
Source§impl Clone for TreeEntryInspection
impl Clone for TreeEntryInspection
Source§fn clone(&self) -> TreeEntryInspection
fn clone(&self) -> TreeEntryInspection
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 moreSource§impl Debug for TreeEntryInspection
impl Debug for TreeEntryInspection
impl Eq for TreeEntryInspection
Source§impl PartialEq for TreeEntryInspection
impl PartialEq for TreeEntryInspection
impl StructuralPartialEq for TreeEntryInspection
Auto Trait Implementations§
impl Freeze for TreeEntryInspection
impl RefUnwindSafe for TreeEntryInspection
impl Send for TreeEntryInspection
impl Sync for TreeEntryInspection
impl Unpin for TreeEntryInspection
impl UnsafeUnpin for TreeEntryInspection
impl UnwindSafe for TreeEntryInspection
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