pub struct FixForwardPlan {
pub plan_id: String,
pub registry: String,
pub compromised_count: usize,
pub steps: Vec<FixForwardStep>,
}Expand description
A fix-forward plan produced from a receipt.
Fields§
§plan_id: String§registry: String§compromised_count: usizeHow many receipt packages were flagged compromised.
steps: Vec<FixForwardStep>Steps in topological order (dependencies first, dependents last).
The operator applies these by bumping Cargo.toml and running
shipper publish for the successor version.
Trait Implementations§
Source§impl Clone for FixForwardPlan
impl Clone for FixForwardPlan
Source§fn clone(&self) -> FixForwardPlan
fn clone(&self) -> FixForwardPlan
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 FixForwardPlan
impl Debug for FixForwardPlan
Auto Trait Implementations§
impl Freeze for FixForwardPlan
impl RefUnwindSafe for FixForwardPlan
impl Send for FixForwardPlan
impl Sync for FixForwardPlan
impl Unpin for FixForwardPlan
impl UnsafeUnpin for FixForwardPlan
impl UnwindSafe for FixForwardPlan
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