#[non_exhaustive]pub enum WorkflowSignalState {
Pending,
Consumed,
DeadLettered,
}Expand description
Durable lifecycle state of an accepted signal identity.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pending
Accepted and available to a future matching wait.
Consumed
Atomically consumed by a matching wait.
DeadLettered
Retained for audit but no longer eligible for delivery.
Trait Implementations§
Source§impl Clone for WorkflowSignalState
impl Clone for WorkflowSignalState
Source§fn clone(&self) -> WorkflowSignalState
fn clone(&self) -> WorkflowSignalState
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 moreimpl Copy for WorkflowSignalState
Source§impl Debug for WorkflowSignalState
impl Debug for WorkflowSignalState
impl Eq for WorkflowSignalState
Source§impl PartialEq for WorkflowSignalState
impl PartialEq for WorkflowSignalState
impl StructuralPartialEq for WorkflowSignalState
Auto Trait Implementations§
impl Freeze for WorkflowSignalState
impl RefUnwindSafe for WorkflowSignalState
impl Send for WorkflowSignalState
impl Sync for WorkflowSignalState
impl Unpin for WorkflowSignalState
impl UnsafeUnpin for WorkflowSignalState
impl UnwindSafe for WorkflowSignalState
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