pub struct ActivityReport {
pub artifacts: Vec<ActivityArtifact>,
pub written: bool,
}Expand description
The result of generating (or checking) a package’s activity plumbing.
Fields§
§artifacts: Vec<ActivityArtifact>Every generated file, in deterministic order.
written: boolWhether the files were written (Write) or only checked (Check).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActivityReport
impl RefUnwindSafe for ActivityReport
impl Send for ActivityReport
impl Sync for ActivityReport
impl Unpin for ActivityReport
impl UnsafeUnpin for ActivityReport
impl UnwindSafe for ActivityReport
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