#[non_exhaustive]pub struct ManagedActionHistoryItem {
pub action_id: Option<String>,
pub action_type: Option<ActionType>,
pub action_description: Option<String>,
pub failure_type: Option<FailureType>,
pub status: Option<ActionHistoryStatus>,
pub failure_description: Option<String>,
pub executed_time: Option<DateTime>,
pub finished_time: Option<DateTime>,
}
Expand description
The record of a completed or failed managed action.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.action_id: Option<String>
A unique identifier for the managed action.
action_type: Option<ActionType>
The type of the managed action.
action_description: Option<String>
A description of the managed action.
failure_type: Option<FailureType>
If the action failed, the type of failure.
status: Option<ActionHistoryStatus>
The status of the action.
failure_description: Option<String>
If the action failed, a description of the failure.
executed_time: Option<DateTime>
The date and time that the action started executing.
finished_time: Option<DateTime>
The date and time that the action finished executing.
Implementations
The type of the managed action.
A description of the managed action.
If the action failed, the type of failure.
The status of the action.
If the action failed, a description of the failure.
The date and time that the action started executing.
The date and time that the action finished executing.
Creates a new builder-style object to manufacture ManagedActionHistoryItem
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ManagedActionHistoryItem
impl Send for ManagedActionHistoryItem
impl Sync for ManagedActionHistoryItem
impl Unpin for ManagedActionHistoryItem
impl UnwindSafe for ManagedActionHistoryItem
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more