#[non_exhaustive]pub enum WaitpointKind {
SignalName,
CorrelationId,
External,
}Expand description
Waitpoint matcher mode (mirrors today’s suspend/close matcher kinds — signal name, correlation id, etc.).
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.
SignalName
Match by signal name.
CorrelationId
Match by correlation id.
External
Generic external-signal waitpoint (external delivery).
Trait Implementations§
Source§impl Clone for WaitpointKind
impl Clone for WaitpointKind
Source§fn clone(&self) -> WaitpointKind
fn clone(&self) -> WaitpointKind
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 WaitpointKind
impl Debug for WaitpointKind
Source§impl Hash for WaitpointKind
impl Hash for WaitpointKind
Source§impl PartialEq for WaitpointKind
impl PartialEq for WaitpointKind
impl Copy for WaitpointKind
impl Eq for WaitpointKind
impl StructuralPartialEq for WaitpointKind
Auto Trait Implementations§
impl Freeze for WaitpointKind
impl RefUnwindSafe for WaitpointKind
impl Send for WaitpointKind
impl Sync for WaitpointKind
impl Unpin for WaitpointKind
impl UnsafeUnpin for WaitpointKind
impl UnwindSafe for WaitpointKind
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