pub enum GoResult {
Found {
path: PathBuf,
branch: String,
},
NotFound(String),
Ambiguous(Vec<String>),
}Expand description
Result of a go operation.
Variants§
Auto Trait Implementations§
impl Freeze for GoResult
impl RefUnwindSafe for GoResult
impl Send for GoResult
impl Sync for GoResult
impl Unpin for GoResult
impl UnsafeUnpin for GoResult
impl UnwindSafe for GoResult
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