pub enum FlatEntry {
Project {
idx: usize,
},
Worktree {
project_idx: usize,
worktree_idx: usize,
},
Session {
project_idx: usize,
worktree_idx: usize,
session_idx: usize,
},
}Expand description
Flat tree entry for rendering and 3-level navigation.
Variants§
Trait Implementations§
impl StructuralPartialEq for FlatEntry
Auto Trait Implementations§
impl Freeze for FlatEntry
impl RefUnwindSafe for FlatEntry
impl Send for FlatEntry
impl Sync for FlatEntry
impl Unpin for FlatEntry
impl UnsafeUnpin for FlatEntry
impl UnwindSafe for FlatEntry
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