pub struct DryRunReport {
pub crate_name: String,
pub results: Vec<DryRunVersionResult>,
}Expand description
Result of the dry-run for all pending versions.
Fields§
§crate_name: StringCrate name from the ledger.
results: Vec<DryRunVersionResult>Per-version results in ascending version order.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DryRunReport
impl RefUnwindSafe for DryRunReport
impl Send for DryRunReport
impl Sync for DryRunReport
impl Unpin for DryRunReport
impl UnsafeUnpin for DryRunReport
impl UnwindSafe for DryRunReport
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