pub enum TreeEntryKind {
Directory,
Cell,
Mount,
}Expand description
Kind of one immediate expression-tree entry.
Variants§
Directory
A finite namespace directory.
Cell
A source cell.
Mount
A mounted directory or table boundary.
Trait Implementations§
Source§impl Clone for TreeEntryKind
impl Clone for TreeEntryKind
Source§fn clone(&self) -> TreeEntryKind
fn clone(&self) -> TreeEntryKind
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 moreimpl Copy for TreeEntryKind
Source§impl Debug for TreeEntryKind
impl Debug for TreeEntryKind
impl Eq for TreeEntryKind
Source§impl PartialEq for TreeEntryKind
impl PartialEq for TreeEntryKind
impl StructuralPartialEq for TreeEntryKind
Auto Trait Implementations§
impl Freeze for TreeEntryKind
impl RefUnwindSafe for TreeEntryKind
impl Send for TreeEntryKind
impl Sync for TreeEntryKind
impl Unpin for TreeEntryKind
impl UnsafeUnpin for TreeEntryKind
impl UnwindSafe for TreeEntryKind
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