pub struct DryRunReport {
pub adapter: Adapter,
pub planned_commands: Vec<PlannedCommand>,
pub notes: Vec<String>,
}Expand description
The result of an adapter’s dry_run — the re-runnable, side-effect-free
preview of exactly what a real cut would do for this target.
Purely descriptive: it lists the commands that would run (so release plan
can seal them and a human can approve the concrete actions) plus any adapter
notes (e.g. “publish happens in CI via a trusted-publisher workflow, not from
this host”). Running a dry-run never mutates external state.
Fields§
§adapter: AdapterThe adapter identity that produced this preview.
planned_commands: Vec<PlannedCommand>The commands a real cut would run for this target, in order.
notes: Vec<String>Non-fatal adapter notes about the preview (caveats, CI-driven steps).
Trait Implementations§
Source§impl Clone for DryRunReport
impl Clone for DryRunReport
Source§fn clone(&self) -> DryRunReport
fn clone(&self) -> DryRunReport
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 DryRunReport
impl Debug for DryRunReport
impl Eq for DryRunReport
Source§impl PartialEq for DryRunReport
impl PartialEq for DryRunReport
Source§impl Serialize for DryRunReport
impl Serialize for DryRunReport
impl StructuralPartialEq for DryRunReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.