pub enum HarnessSelectionPlan {
None,
Auto,
Explicit(Vec<String>),
}Expand description
Pure selection parse before auto-detection / FS.
Variants§
None
Explicit empty install (none).
Auto
Detect from environment / tree (auto).
Explicit(Vec<String>)
Explicit harness list.
Trait Implementations§
Source§impl Clone for HarnessSelectionPlan
impl Clone for HarnessSelectionPlan
Source§fn clone(&self) -> HarnessSelectionPlan
fn clone(&self) -> HarnessSelectionPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HarnessSelectionPlan
impl Debug for HarnessSelectionPlan
impl Eq for HarnessSelectionPlan
Source§impl PartialEq for HarnessSelectionPlan
impl PartialEq for HarnessSelectionPlan
impl StructuralPartialEq for HarnessSelectionPlan
Auto Trait Implementations§
impl Freeze for HarnessSelectionPlan
impl RefUnwindSafe for HarnessSelectionPlan
impl Send for HarnessSelectionPlan
impl Sync for HarnessSelectionPlan
impl Unpin for HarnessSelectionPlan
impl UnsafeUnpin for HarnessSelectionPlan
impl UnwindSafe for HarnessSelectionPlan
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