pub struct ValidateReport {
pub total: usize,
pub invalid_count: usize,
pub commits: Vec<ValidatedCommit>,
}Expand description
Overall validation report
Fields§
§total: usize§invalid_count: usize§commits: Vec<ValidatedCommit>Trait Implementations§
Source§impl Clone for ValidateReport
impl Clone for ValidateReport
Source§fn clone(&self) -> ValidateReport
fn clone(&self) -> ValidateReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidateReport
impl RefUnwindSafe for ValidateReport
impl Send for ValidateReport
impl Sync for ValidateReport
impl Unpin for ValidateReport
impl UnsafeUnpin for ValidateReport
impl UnwindSafe for ValidateReport
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