Enum CommandExecutionStatus
pub enum CommandExecutionStatus {
InProgress,
Succeeded,
Failed,
Rejected,
TimedOut,
}Expand description
The status of a command execution.
See: https://docs.aws.amazon.com/iot/latest/developerguide/iot-remote-command-concepts.html
Variants§
Trait Implementations§
§impl Clone for CommandExecutionStatus
impl Clone for CommandExecutionStatus
§fn clone(&self) -> CommandExecutionStatus
fn clone(&self) -> CommandExecutionStatus
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 more§impl Debug for CommandExecutionStatus
impl Debug for CommandExecutionStatus
§impl<'de> Deserialize<'de> for CommandExecutionStatus
impl<'de> Deserialize<'de> for CommandExecutionStatus
§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
§impl PartialEq for CommandExecutionStatus
impl PartialEq for CommandExecutionStatus
§impl Serialize for CommandExecutionStatus
impl Serialize for CommandExecutionStatus
impl Copy for CommandExecutionStatus
impl Eq for CommandExecutionStatus
impl StructuralPartialEq for CommandExecutionStatus
Auto Trait Implementations§
impl Freeze for CommandExecutionStatus
impl RefUnwindSafe for CommandExecutionStatus
impl Send for CommandExecutionStatus
impl Sync for CommandExecutionStatus
impl Unpin for CommandExecutionStatus
impl UnwindSafe for CommandExecutionStatus
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