pub struct RemediationCommand {
pub phase: String,
pub description: String,
pub argv: Vec<String>,
}Fields§
§phase: String§description: String§argv: Vec<String>Trait Implementations§
Source§impl Clone for RemediationCommand
impl Clone for RemediationCommand
Source§fn clone(&self) -> RemediationCommand
fn clone(&self) -> RemediationCommand
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 RemediationCommand
impl Debug for RemediationCommand
Source§impl<'de> Deserialize<'de> for RemediationCommand
impl<'de> Deserialize<'de> for RemediationCommand
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 RemediationCommand
impl RefUnwindSafe for RemediationCommand
impl Send for RemediationCommand
impl Sync for RemediationCommand
impl Unpin for RemediationCommand
impl UnsafeUnpin for RemediationCommand
impl UnwindSafe for RemediationCommand
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