pub struct CheckSummary {
pub stable: usize,
pub stale: usize,
pub unchanged: usize,
}Expand description
Result of a check run.
Fields§
§stable: usize§stale: usize§unchanged: usizeTrait Implementations§
Source§impl Clone for CheckSummary
impl Clone for CheckSummary
Source§fn clone(&self) -> CheckSummary
fn clone(&self) -> CheckSummary
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 CheckSummary
impl Debug for CheckSummary
Source§impl Default for CheckSummary
impl Default for CheckSummary
Source§fn default() -> CheckSummary
fn default() -> CheckSummary
Returns the “default value” for a type. Read more
impl Eq for CheckSummary
Source§impl PartialEq for CheckSummary
impl PartialEq for CheckSummary
impl StructuralPartialEq for CheckSummary
Auto Trait Implementations§
impl Freeze for CheckSummary
impl RefUnwindSafe for CheckSummary
impl Send for CheckSummary
impl Sync for CheckSummary
impl Unpin for CheckSummary
impl UnsafeUnpin for CheckSummary
impl UnwindSafe for CheckSummary
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