pub struct VerificationCommand {
pub command: String,
pub exit_code: i32,
pub observation: String,
}Expand description
Command run during verification with observed outcome.
Fields§
§command: String§exit_code: i32§observation: StringTrait Implementations§
Source§impl Clone for VerificationCommand
impl Clone for VerificationCommand
Source§fn clone(&self) -> VerificationCommand
fn clone(&self) -> VerificationCommand
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 VerificationCommand
impl Debug for VerificationCommand
Source§impl<'de> Deserialize<'de> for VerificationCommand
impl<'de> Deserialize<'de> for VerificationCommand
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
Source§impl PartialEq for VerificationCommand
impl PartialEq for VerificationCommand
Source§fn eq(&self, other: &VerificationCommand) -> bool
fn eq(&self, other: &VerificationCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VerificationCommand
impl Serialize for VerificationCommand
impl StructuralPartialEq for VerificationCommand
Auto Trait Implementations§
impl Freeze for VerificationCommand
impl RefUnwindSafe for VerificationCommand
impl Send for VerificationCommand
impl Sync for VerificationCommand
impl Unpin for VerificationCommand
impl UnsafeUnpin for VerificationCommand
impl UnwindSafe for VerificationCommand
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