pub struct VerificationResult {
pub affected_packages: Vec<PackageInfo>,
pub covered_packages: HashSet<String>,
pub uncovered_packages: Vec<PackageInfo>,
pub deleted_changesets: Vec<PathBuf>,
pub project_files: Vec<PathBuf>,
pub ignored_files: Vec<PathBuf>,
}Fields§
§affected_packages: Vec<PackageInfo>§covered_packages: HashSet<String>§uncovered_packages: Vec<PackageInfo>§deleted_changesets: Vec<PathBuf>§project_files: Vec<PathBuf>§ignored_files: Vec<PathBuf>Implementations§
Source§impl VerificationResult
impl VerificationResult
pub fn is_success(&self) -> bool
Trait Implementations§
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more