pub struct RestartFlowAtStepRequestNestedPathInner {
pub step_id: String,
pub branch_or_iteration_n: Option<i32>,
}Fields§
§step_id: Stringstep id at this nesting level
branch_or_iteration_n: Option<i32>for ForLoop containers, the iteration to restart at (0-based; iterations 0..n-1 are preserved)
Implementations§
Source§impl RestartFlowAtStepRequestNestedPathInner
impl RestartFlowAtStepRequestNestedPathInner
pub fn new(step_id: String) -> RestartFlowAtStepRequestNestedPathInner
Trait Implementations§
Source§impl Clone for RestartFlowAtStepRequestNestedPathInner
impl Clone for RestartFlowAtStepRequestNestedPathInner
Source§fn clone(&self) -> RestartFlowAtStepRequestNestedPathInner
fn clone(&self) -> RestartFlowAtStepRequestNestedPathInner
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 Default for RestartFlowAtStepRequestNestedPathInner
impl Default for RestartFlowAtStepRequestNestedPathInner
Source§fn default() -> RestartFlowAtStepRequestNestedPathInner
fn default() -> RestartFlowAtStepRequestNestedPathInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestartFlowAtStepRequestNestedPathInner
impl<'de> Deserialize<'de> for RestartFlowAtStepRequestNestedPathInner
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RestartFlowAtStepRequestNestedPathInner
impl PartialEq for RestartFlowAtStepRequestNestedPathInner
Source§fn eq(&self, other: &RestartFlowAtStepRequestNestedPathInner) -> bool
fn eq(&self, other: &RestartFlowAtStepRequestNestedPathInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RestartFlowAtStepRequestNestedPathInner
Auto Trait Implementations§
impl Freeze for RestartFlowAtStepRequestNestedPathInner
impl RefUnwindSafe for RestartFlowAtStepRequestNestedPathInner
impl Send for RestartFlowAtStepRequestNestedPathInner
impl Sync for RestartFlowAtStepRequestNestedPathInner
impl Unpin for RestartFlowAtStepRequestNestedPathInner
impl UnsafeUnpin for RestartFlowAtStepRequestNestedPathInner
impl UnwindSafe for RestartFlowAtStepRequestNestedPathInner
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