pub struct CheckRunResult {
pub all_passed: bool,
pub results: Vec<CheckResult>,
pub error: Option<ErrorInfo>,
}Expand description
Result of running all checks for a phase.
Fields§
§all_passed: bool§results: Vec<CheckResult>§error: Option<ErrorInfo>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CheckRunResult
impl RefUnwindSafe for CheckRunResult
impl Send for CheckRunResult
impl Sync for CheckRunResult
impl Unpin for CheckRunResult
impl UnsafeUnpin for CheckRunResult
impl UnwindSafe for CheckRunResult
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