pub struct ActionStatus {
pub error: Option<ConfigError>,
pub name: String,
pub request_message_schema_reference: Option<MessageSchemaReference>,
pub response_message_schema_reference: Option<MessageSchemaReference>,
}
Expand description
Represents the status for an action associated with a management group.
Fields§
§error: Option<ConfigError>
The last error that occurred while processing the action.
name: String
The name of the action. Must be unique within the status.managementGroup[i].actions array. This name is used to correlate between the spec and status management group action information.
request_message_schema_reference: Option<MessageSchemaReference>
The request message schema reference.
response_message_schema_reference: Option<MessageSchemaReference>
The response message schema reference.
Trait Implementations§
Source§impl Clone for ActionStatus
impl Clone for ActionStatus
Source§fn clone(&self) -> ActionStatus
fn clone(&self) -> ActionStatus
Returns a copy 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 ActionStatus
impl Debug for ActionStatus
Source§impl PartialEq for ActionStatus
impl PartialEq for ActionStatus
impl StructuralPartialEq for ActionStatus
Auto Trait Implementations§
impl Freeze for ActionStatus
impl RefUnwindSafe for ActionStatus
impl Send for ActionStatus
impl Sync for ActionStatus
impl Unpin for ActionStatus
impl UnwindSafe for ActionStatus
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