pub struct VerificationResult {
pub git_verified: bool,
pub commits_verified: usize,
pub branches_verified: usize,
pub tags_verified: usize,
pub issues_verified: bool,
pub prs_verified: bool,
pub releases_verified: bool,
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Verification results for a migration.
Fields§
§git_verified: boolGit data verification passed.
commits_verified: usizeNumber of commits verified.
branches_verified: usizeNumber of branches verified.
Number of tags verified.
issues_verified: boolIssues count matches.
prs_verified: boolPull requests count matches.
releases_verified: boolReleases count matches.
errors: Vec<String>Verification errors.
warnings: Vec<String>Verification warnings.
Implementations§
Source§impl VerificationResult
impl VerificationResult
Sourcepub fn is_success(&self) -> bool
pub fn is_success(&self) -> bool
Check if verification passed.
Sourcepub fn print_summary(&self)
pub fn print_summary(&self)
Print verification summary.
Trait Implementations§
Source§impl Clone for VerificationResult
impl Clone for VerificationResult
Source§fn clone(&self) -> VerificationResult
fn clone(&self) -> VerificationResult
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 VerificationResult
impl Debug for VerificationResult
Source§impl Default for VerificationResult
impl Default for VerificationResult
Source§fn default() -> VerificationResult
fn default() -> VerificationResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VerificationResult
impl RefUnwindSafe for VerificationResult
impl Send for VerificationResult
impl Sync for VerificationResult
impl Unpin for VerificationResult
impl UnsafeUnpin for VerificationResult
impl UnwindSafe for VerificationResult
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