pub struct RepairAction {
pub action_id: String,
pub action_type: RepairActionType,
pub target_entity: String,
pub description: String,
pub executed_at: DateTime<Utc>,
pub result: RepairResult,
pub details: HashMap<String, Value>,
}Expand description
Repair actions
Fields§
§action_id: StringAction ID
action_type: RepairActionTypeAction type
target_entity: StringTarget entity
description: StringAction description
executed_at: DateTime<Utc>Action timestamp
result: RepairResultAction result
details: HashMap<String, Value>Details about the repair
Trait Implementations§
Source§impl Clone for RepairAction
impl Clone for RepairAction
Source§fn clone(&self) -> RepairAction
fn clone(&self) -> RepairAction
Returns a duplicate of the value. Read more
1.0.0 · 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 RepairAction
impl Debug for RepairAction
Source§impl<'de> Deserialize<'de> for RepairAction
impl<'de> Deserialize<'de> for RepairAction
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 RepairAction
impl RefUnwindSafe for RepairAction
impl Send for RepairAction
impl Sync for RepairAction
impl Unpin for RepairAction
impl UnwindSafe for RepairAction
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