pub enum TreeValue {
File {
id: FileId,
executable: bool,
},
Symlink(SymlinkId),
Tree(TreeId),
GitSubmodule(CommitId),
Conflict(ConflictId),
}
Variants§
Trait Implementations§
source§impl PartialEq<TreeValue> for TreeValue
impl PartialEq<TreeValue> for TreeValue
impl Eq for TreeValue
impl StructuralEq for TreeValue
impl StructuralPartialEq for TreeValue
Auto Trait Implementations§
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