pub struct ClippyResult {
pub success: bool,
pub output: String,
}Expand description
Result of running clippy
Fields§
§success: boolWhether clippy passed without errors
output: StringCombined stdout and stderr output
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClippyResult
impl RefUnwindSafe for ClippyResult
impl Send for ClippyResult
impl Sync for ClippyResult
impl Unpin for ClippyResult
impl UnwindSafe for ClippyResult
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