pub enum TelemetryTerminalStatus {
Completed,
Failed,
Cancelled,
TimedOut,
Unknown,
}Expand description
Enumerates the finite telemetry terminal status cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Completed
Use this variant when the contract needs to represent completed; selecting it has no side effect by itself.
Failed
Use this variant when the contract needs to represent failed; selecting it has no side effect by itself.
Cancelled
Use this variant when the contract needs to represent cancelled; selecting it has no side effect by itself.
TimedOut
Use this variant when the contract needs to represent timed out; selecting it has no side effect by itself.
Unknown
Use this variant when the contract needs to represent unknown; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for TelemetryTerminalStatus
impl Clone for TelemetryTerminalStatus
Source§fn clone(&self) -> TelemetryTerminalStatus
fn clone(&self) -> TelemetryTerminalStatus
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 TelemetryTerminalStatus
impl Debug for TelemetryTerminalStatus
Source§impl<'de> Deserialize<'de> for TelemetryTerminalStatus
impl<'de> Deserialize<'de> for TelemetryTerminalStatus
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 TelemetryTerminalStatus
impl PartialEq for TelemetryTerminalStatus
Source§fn eq(&self, other: &TelemetryTerminalStatus) -> bool
fn eq(&self, other: &TelemetryTerminalStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TelemetryTerminalStatus
impl Serialize for TelemetryTerminalStatus
impl Eq for TelemetryTerminalStatus
impl StructuralPartialEq for TelemetryTerminalStatus
Auto Trait Implementations§
impl Freeze for TelemetryTerminalStatus
impl RefUnwindSafe for TelemetryTerminalStatus
impl Send for TelemetryTerminalStatus
impl Sync for TelemetryTerminalStatus
impl Unpin for TelemetryTerminalStatus
impl UnsafeUnpin for TelemetryTerminalStatus
impl UnwindSafe for TelemetryTerminalStatus
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