pub enum IdentifierKind {
Workflow,
Execution,
Message,
Node,
Port,
}Expand description
Kinds of opaque identifiers used by Pureflow.
Variants§
Workflow
A workflow identifier.
Execution
An execution identifier for one workflow run.
Message
A message identifier for one envelope.
Node
A node identifier within a workflow graph.
Port
A port identifier on a node.
Trait Implementations§
Source§impl Clone for IdentifierKind
impl Clone for IdentifierKind
Source§fn clone(&self) -> IdentifierKind
fn clone(&self) -> IdentifierKind
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 IdentifierKind
impl Debug for IdentifierKind
Source§impl PartialEq for IdentifierKind
impl PartialEq for IdentifierKind
Source§fn eq(&self, other: &IdentifierKind) -> bool
fn eq(&self, other: &IdentifierKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IdentifierKind
impl Eq for IdentifierKind
impl StructuralPartialEq for IdentifierKind
Auto Trait Implementations§
impl Freeze for IdentifierKind
impl RefUnwindSafe for IdentifierKind
impl Send for IdentifierKind
impl Sync for IdentifierKind
impl Unpin for IdentifierKind
impl UnsafeUnpin for IdentifierKind
impl UnwindSafe for IdentifierKind
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