pub enum GoQuery {
Fuzzy(String),
Index(usize),
Previous,
}Expand description
What the user wants to navigate to.
Variants§
Fuzzy(String)
Fuzzy substring match on branch name.
Index(usize)
Jump by 1-based index in the worktree list.
Previous
Return to the previous worktree.
Auto Trait Implementations§
impl Freeze for GoQuery
impl RefUnwindSafe for GoQuery
impl Send for GoQuery
impl Sync for GoQuery
impl Unpin for GoQuery
impl UnsafeUnpin for GoQuery
impl UnwindSafe for GoQuery
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