pub struct ProjectReport {
pub packages: Vec<PackagedWorkflow>,
pub excluded: Vec<ExcludedModule>,
}Expand description
Result of packaging every workflow a project declares.
Fields§
§packages: Vec<PackagedWorkflow>One built package per [[workflow]] entry, in declaration order.
excluded: Vec<ExcludedModule>Modules excluded by the SDK test filter or the dependency-closure filter.
Trait Implementations§
Source§impl Clone for ProjectReport
impl Clone for ProjectReport
Source§fn clone(&self) -> ProjectReport
fn clone(&self) -> ProjectReport
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 ProjectReport
impl Debug for ProjectReport
Source§impl PartialEq for ProjectReport
impl PartialEq for ProjectReport
Source§fn eq(&self, other: &ProjectReport) -> bool
fn eq(&self, other: &ProjectReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProjectReport
Auto Trait Implementations§
impl Freeze for ProjectReport
impl RefUnwindSafe for ProjectReport
impl Send for ProjectReport
impl Sync for ProjectReport
impl Unpin for ProjectReport
impl UnsafeUnpin for ProjectReport
impl UnwindSafe for ProjectReport
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