pub struct RestartProcessInstanceModificationInstructionDto {
pub _type: Type,
pub activity_id: Option<String>,
pub transition_id: Option<String>,
}Fields§
§_type: TypeMandatory. One of the following values: startBeforeActivity, startAfterActivity, startTransition. * A startBeforeActivity instruction requests to enter a given activity. * A startAfterActivity instruction requests to execute the single outgoing sequence flow of a given activity. * A startTransition instruction requests to execute a specific sequence flow.
activity_id: Option<String>Can be used with instructions of types startBeforeActivity and startAfterActivity. Specifies the sequence flow to start.
transition_id: Option<String>Can be used with instructions of types startTransition. Specifies the sequence flow to start.
Implementations§
Trait Implementations§
Source§impl Clone for RestartProcessInstanceModificationInstructionDto
impl Clone for RestartProcessInstanceModificationInstructionDto
Source§fn clone(&self) -> RestartProcessInstanceModificationInstructionDto
fn clone(&self) -> RestartProcessInstanceModificationInstructionDto
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for RestartProcessInstanceModificationInstructionDto
impl<'de> Deserialize<'de> for RestartProcessInstanceModificationInstructionDto
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 RestartProcessInstanceModificationInstructionDto
impl PartialEq for RestartProcessInstanceModificationInstructionDto
Source§fn eq(&self, other: &RestartProcessInstanceModificationInstructionDto) -> bool
fn eq(&self, other: &RestartProcessInstanceModificationInstructionDto) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RestartProcessInstanceModificationInstructionDto
Auto Trait Implementations§
impl Freeze for RestartProcessInstanceModificationInstructionDto
impl RefUnwindSafe for RestartProcessInstanceModificationInstructionDto
impl Send for RestartProcessInstanceModificationInstructionDto
impl Sync for RestartProcessInstanceModificationInstructionDto
impl Unpin for RestartProcessInstanceModificationInstructionDto
impl UnwindSafe for RestartProcessInstanceModificationInstructionDto
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more