pub struct DroppedStep {
pub step: VerificationStep,
pub reason: String,
}Expand description
A step that was dropped from a verification plan due to budget constraints.
Fields§
§step: VerificationStepThe step that was dropped.
reason: StringWhy it was dropped.
Trait Implementations§
Source§impl Clone for DroppedStep
impl Clone for DroppedStep
Source§fn clone(&self) -> DroppedStep
fn clone(&self) -> DroppedStep
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 DroppedStep
impl Debug for DroppedStep
Source§impl<'de> Deserialize<'de> for DroppedStep
impl<'de> Deserialize<'de> for DroppedStep
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DroppedStep
impl RefUnwindSafe for DroppedStep
impl Send for DroppedStep
impl Sync for DroppedStep
impl Unpin for DroppedStep
impl UnsafeUnpin for DroppedStep
impl UnwindSafe for DroppedStep
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