pub enum Kind {
Runnable {
scope: Scope,
severity: Severity,
program: String,
args: Vec<String>,
fix: Fix,
},
Unusable {
why: String,
},
}Expand description
The two things an external can be. Scope and Severity live only on the
runnable side, so a broken external cannot carry a severity nobody applies.
Variants§
Auto Trait Implementations§
impl Freeze for Kind
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnsafeUnpin for Kind
impl UnwindSafe for Kind
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