pub enum LifecyclePerformerResponse {
Receipt(Datum),
AcknowledgementMissing,
}Expand description
Result of calling a lifecycle performer after durable dispatch.
Variants§
Receipt(Datum)
The performer returned an uninterpreted raw acknowledgement.
AcknowledgementMissing
Performance may have occurred, but its acknowledgement was lost.
Trait Implementations§
Source§impl Clone for LifecyclePerformerResponse
impl Clone for LifecyclePerformerResponse
Source§fn clone(&self) -> LifecyclePerformerResponse
fn clone(&self) -> LifecyclePerformerResponse
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 LifecyclePerformerResponse
impl Debug for LifecyclePerformerResponse
impl Eq for LifecyclePerformerResponse
impl StructuralPartialEq for LifecyclePerformerResponse
Auto Trait Implementations§
impl Freeze for LifecyclePerformerResponse
impl RefUnwindSafe for LifecyclePerformerResponse
impl Send for LifecyclePerformerResponse
impl Sync for LifecyclePerformerResponse
impl Unpin for LifecyclePerformerResponse
impl UnsafeUnpin for LifecyclePerformerResponse
impl UnwindSafe for LifecyclePerformerResponse
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