pub struct FixForwardStep {
pub name: String,
pub current_version: String,
pub suggested_successor: String,
pub reason: Option<String>,
}Expand description
One step in a fix-forward plan.
Fields§
§name: String§current_version: String§suggested_successor: String§reason: Option<String>The compromised_by reason copied from the receipt, so an
operator running the plan sees per-crate context without having
to cross-reference the receipt.
Trait Implementations§
Source§impl Clone for FixForwardStep
impl Clone for FixForwardStep
Source§fn clone(&self) -> FixForwardStep
fn clone(&self) -> FixForwardStep
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 FixForwardStep
impl Debug for FixForwardStep
Auto Trait Implementations§
impl Freeze for FixForwardStep
impl RefUnwindSafe for FixForwardStep
impl Send for FixForwardStep
impl Sync for FixForwardStep
impl Unpin for FixForwardStep
impl UnsafeUnpin for FixForwardStep
impl UnwindSafe for FixForwardStep
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