pub struct RunNodeOptions {
pub run_id: Option<String>,
}Expand description
How one child invocation behaves.
Fields§
§run_id: Option<String>Stable identity for replay.
Defaults to a counter over invocations of this child name within the current activation. Supply one when the parent may be resumed.
Implementations§
Source§impl RunNodeOptions
impl RunNodeOptions
Sourcepub fn with_run_id(run_id: impl Into<String>) -> Self
pub fn with_run_id(run_id: impl Into<String>) -> Self
Options with an explicit run id.
Trait Implementations§
Source§impl Clone for RunNodeOptions
impl Clone for RunNodeOptions
Source§fn clone(&self) -> RunNodeOptions
fn clone(&self) -> RunNodeOptions
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 RunNodeOptions
impl Debug for RunNodeOptions
Source§impl Default for RunNodeOptions
impl Default for RunNodeOptions
Source§fn default() -> RunNodeOptions
fn default() -> RunNodeOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunNodeOptions
impl RefUnwindSafe for RunNodeOptions
impl Send for RunNodeOptions
impl Sync for RunNodeOptions
impl Unpin for RunNodeOptions
impl UnsafeUnpin for RunNodeOptions
impl UnwindSafe for RunNodeOptions
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