pub enum FileTreeNodeKind {
File,
Directory,
}Expand description
Tree node kind used by runtime-facing file tree helpers.
Variants§
Trait Implementations§
Source§impl Clone for FileTreeNodeKind
impl Clone for FileTreeNodeKind
Source§fn clone(&self) -> FileTreeNodeKind
fn clone(&self) -> FileTreeNodeKind
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 moreSource§impl Debug for FileTreeNodeKind
impl Debug for FileTreeNodeKind
Source§impl PartialEq for FileTreeNodeKind
impl PartialEq for FileTreeNodeKind
impl Copy for FileTreeNodeKind
impl Eq for FileTreeNodeKind
impl StructuralPartialEq for FileTreeNodeKind
Auto Trait Implementations§
impl Freeze for FileTreeNodeKind
impl RefUnwindSafe for FileTreeNodeKind
impl Send for FileTreeNodeKind
impl Sync for FileTreeNodeKind
impl Unpin for FileTreeNodeKind
impl UnsafeUnpin for FileTreeNodeKind
impl UnwindSafe for FileTreeNodeKind
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