pub struct VerifyCommand {
pub name: String,
pub command: String,
pub expected_exit_code: i32,
}Fields§
§name: String§command: String§expected_exit_code: i32Trait Implementations§
Source§impl Clone for VerifyCommand
impl Clone for VerifyCommand
Source§fn clone(&self) -> VerifyCommand
fn clone(&self) -> VerifyCommand
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 VerifyCommand
impl Debug for VerifyCommand
Source§impl<'de> Deserialize<'de> for VerifyCommand
impl<'de> Deserialize<'de> for VerifyCommand
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
impl Eq for VerifyCommand
Source§impl PartialEq for VerifyCommand
impl PartialEq for VerifyCommand
Source§impl Serialize for VerifyCommand
impl Serialize for VerifyCommand
impl StructuralPartialEq for VerifyCommand
Auto Trait Implementations§
impl Freeze for VerifyCommand
impl RefUnwindSafe for VerifyCommand
impl Send for VerifyCommand
impl Sync for VerifyCommand
impl Unpin for VerifyCommand
impl UnsafeUnpin for VerifyCommand
impl UnwindSafe for VerifyCommand
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