pub struct HardeningAction {
pub id: String,
pub description: String,
pub before: String,
pub after: String,
}Expand description
A single hardening action taken (before/after for rollback + audit).
Fields§
§id: String§description: String§before: String§after: StringTrait Implementations§
Source§impl Clone for HardeningAction
impl Clone for HardeningAction
Source§fn clone(&self) -> HardeningAction
fn clone(&self) -> HardeningAction
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 HardeningAction
impl Debug for HardeningAction
Source§impl<'de> Deserialize<'de> for HardeningAction
impl<'de> Deserialize<'de> for HardeningAction
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 HardeningAction
impl PartialEq for HardeningAction
Source§fn eq(&self, other: &HardeningAction) -> bool
fn eq(&self, other: &HardeningAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HardeningAction
impl Serialize for HardeningAction
impl StructuralPartialEq for HardeningAction
Auto Trait Implementations§
impl Freeze for HardeningAction
impl RefUnwindSafe for HardeningAction
impl Send for HardeningAction
impl Sync for HardeningAction
impl Unpin for HardeningAction
impl UnsafeUnpin for HardeningAction
impl UnwindSafe for HardeningAction
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