pub enum CommandLifecycleEvent {
Ack(CommandAck),
Receipt(CommandReceipt),
RecoveryScheduled(CommandAck),
RecoveryCompleted {
ack: CommandAck,
report: ReconcileReport,
},
}Expand description
Lifecycle notifications for low-latency command tracking.
Variants§
Trait Implementations§
Source§impl Clone for CommandLifecycleEvent
impl Clone for CommandLifecycleEvent
Source§fn clone(&self) -> CommandLifecycleEvent
fn clone(&self) -> CommandLifecycleEvent
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 moreSource§impl Debug for CommandLifecycleEvent
impl Debug for CommandLifecycleEvent
Source§impl<'de> Deserialize<'de> for CommandLifecycleEvent
impl<'de> Deserialize<'de> for CommandLifecycleEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommandLifecycleEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CommandLifecycleEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CommandLifecycleEvent
impl PartialEq for CommandLifecycleEvent
Source§impl Serialize for CommandLifecycleEvent
impl Serialize for CommandLifecycleEvent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for CommandLifecycleEvent
impl StructuralPartialEq for CommandLifecycleEvent
Auto Trait Implementations§
impl Freeze for CommandLifecycleEvent
impl RefUnwindSafe for CommandLifecycleEvent
impl Send for CommandLifecycleEvent
impl Sync for CommandLifecycleEvent
impl Unpin for CommandLifecycleEvent
impl UnsafeUnpin for CommandLifecycleEvent
impl UnwindSafe for CommandLifecycleEvent
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