pub enum TreeValue {
Normal {
id: FileId,
executable: bool,
},
Symlink(SymlinkId),
Tree(TreeId),
GitSubmodule(CommitId),
Conflict(ConflictId),
}
Variants§
Trait Implementations§
impl Eq for TreeValue
impl StructuralPartialEq for TreeValue
Auto Trait Implementations§
impl Freeze for TreeValue
impl RefUnwindSafe for TreeValue
impl Send for TreeValue
impl Sync for TreeValue
impl Unpin for TreeValue
impl UnwindSafe for TreeValue
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