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<RestartFlowAtStepRequestNestedPathInner, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RestartFlowAtStepRequestNestedPathInner, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RestartFlowAtStepRequestNestedPathInner
impl Serialize for RestartFlowAtStepRequestNestedPathInner
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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