pub struct WorkflowIdentity {
pub workflow_id: Option<String>,
pub run_id: Option<String>,
}Expand description
The identity of one durable workflow execution.
Fields§
§workflow_id: Option<String>§run_id: Option<String>Trait Implementations§
Source§impl Clone for WorkflowIdentity
impl Clone for WorkflowIdentity
Source§fn clone(&self) -> WorkflowIdentity
fn clone(&self) -> WorkflowIdentity
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 WorkflowIdentity
impl Debug for WorkflowIdentity
impl Eq for WorkflowIdentity
Source§impl PartialEq for WorkflowIdentity
impl PartialEq for WorkflowIdentity
impl StructuralPartialEq for WorkflowIdentity
Auto Trait Implementations§
impl Freeze for WorkflowIdentity
impl RefUnwindSafe for WorkflowIdentity
impl Send for WorkflowIdentity
impl Sync for WorkflowIdentity
impl Unpin for WorkflowIdentity
impl UnsafeUnpin for WorkflowIdentity
impl UnwindSafe for WorkflowIdentity
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