pub enum DetectionResult {
Found(ProjectId),
NoMatch {
detected_path: Option<PathBuf>,
},
}Expand description
Result of a project lookup attempt.
Variants§
Found(ProjectId)
Found a matching project.
NoMatch
No project matched. Optionally, a path was detected.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DetectionResult
impl RefUnwindSafe for DetectionResult
impl Send for DetectionResult
impl Sync for DetectionResult
impl Unpin for DetectionResult
impl UnsafeUnpin for DetectionResult
impl UnwindSafe for DetectionResult
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