pub struct CheckResult {
pub fmt_pass: bool,
pub clippy_pass: bool,
pub test_pass: bool,
pub fmt_output: ParsedCheckOutput,
pub clippy_output: ParsedCheckOutput,
pub test_output: ParsedCheckOutput,
pub total_duration_ms: u64,
}Fields§
§fmt_pass: bool§clippy_pass: bool§test_pass: bool§fmt_output: ParsedCheckOutput§clippy_output: ParsedCheckOutput§test_output: ParsedCheckOutput§total_duration_ms: u64Implementations§
Trait Implementations§
Source§impl Clone for CheckResult
impl Clone for CheckResult
Source§fn clone(&self) -> CheckResult
fn clone(&self) -> CheckResult
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 moreAuto Trait Implementations§
impl Freeze for CheckResult
impl RefUnwindSafe for CheckResult
impl Send for CheckResult
impl Sync for CheckResult
impl Unpin for CheckResult
impl UnsafeUnpin for CheckResult
impl UnwindSafe for CheckResult
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