pub struct ScanResult {
pub buildable: HashMap<PkgName, ResolvedIndex>,
pub skipped: Vec<SkippedPackage>,
pub scan_failed: Vec<ScanFailure>,
}Expand description
Result of scanning and resolving packages.
Returned by Scan::resolve, contains the packages that can be built
and those that were skipped.
Fields§
§buildable: HashMap<PkgName, ResolvedIndex>Packages that can be built, indexed by package name.
These packages have all dependencies resolved and no skip/fail reasons.
skipped: Vec<SkippedPackage>Packages that were skipped due to skip/fail reasons.
scan_failed: Vec<ScanFailure>Packages that failed to scan (bmake pbulk-index failed).
Implementations§
Source§impl ScanResult
impl ScanResult
Sourcepub fn write_resolve_log(&self, path: &Path) -> Result<()>
pub fn write_resolve_log(&self, path: &Path) -> Result<()>
Write resolved packages to a log file in pbulk presolve format.
Sourcepub fn write_resolve_dag(&self, path: &Path) -> Result<()>
pub fn write_resolve_dag(&self, path: &Path) -> Result<()>
Write the resolved DAG as a sorted edge list for comparison.
Trait Implementations§
Source§impl Clone for ScanResult
impl Clone for ScanResult
Source§fn clone(&self) -> ScanResult
fn clone(&self) -> ScanResult
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 moreSource§impl Debug for ScanResult
impl Debug for ScanResult
Source§impl Default for ScanResult
impl Default for ScanResult
Source§fn default() -> ScanResult
fn default() -> ScanResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnwindSafe for ScanResult
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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