pub enum OutputDispatchStatus {
Requested,
Completed,
Failed,
Deduped,
HostConfigurationNeeded,
PolicyDenied,
SkippedOptional,
ReconciliationNeeded,
}Expand description
Enumerates the finite output dispatch status cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
Requested
Use this variant when the contract needs to represent requested; selecting it has no side effect by itself.
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.
Deduped
Use this variant when the contract needs to represent deduped; selecting it has no side effect by itself.
HostConfigurationNeeded
Use this variant when the contract needs to represent host configuration needed; selecting it has no side effect by itself.
PolicyDenied
Use this variant when the contract needs to represent policy denied; selecting it has no side effect by itself.
SkippedOptional
Use this variant when the contract needs to represent skipped optional; selecting it has no side effect by itself.
ReconciliationNeeded
Use this variant when the contract needs to represent reconciliation needed; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for OutputDispatchStatus
impl Clone for OutputDispatchStatus
Source§fn clone(&self) -> OutputDispatchStatus
fn clone(&self) -> OutputDispatchStatus
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for OutputDispatchStatus
impl Debug for OutputDispatchStatus
Source§impl<'de> Deserialize<'de> for OutputDispatchStatus
impl<'de> Deserialize<'de> for OutputDispatchStatus
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>,
Source§impl PartialEq for OutputDispatchStatus
impl PartialEq for OutputDispatchStatus
Source§fn eq(&self, other: &OutputDispatchStatus) -> bool
fn eq(&self, other: &OutputDispatchStatus) -> bool
self and other values to be equal, and is used by ==.