pub struct ProcessInstanceWithVariablesDto {
pub variables: Option<HashMap<String, VariableValueDto>>,
pub id: Option<String>,
pub definition_id: Option<String>,
pub business_key: Option<String>,
pub case_instance_id: Option<String>,
pub ended: Option<bool>,
pub suspended: Option<bool>,
pub tenant_id: Option<String>,
pub links: Option<Vec<AtomLink>>,
}Fields§
§variables: Option<HashMap<String, VariableValueDto>>The id of the process instance.
id: Option<String>The id of the process instance.
definition_id: Option<String>The id of the process definition that this process instance belongs to.
business_key: Option<String>The business key of the process instance.
case_instance_id: Option<String>The id of the case instance associated with the process instance.
ended: Option<bool>A flag indicating whether the process instance has ended or not. Deprecated: will always be false!
suspended: Option<bool>A flag indicating whether the process instance is suspended or not.
tenant_id: Option<String>The tenant id of the process instance.
links: Option<Vec<AtomLink>>The links associated to this resource, with method, href and rel.
Implementations§
Trait Implementations§
Source§impl Clone for ProcessInstanceWithVariablesDto
impl Clone for ProcessInstanceWithVariablesDto
Source§fn clone(&self) -> ProcessInstanceWithVariablesDto
fn clone(&self) -> ProcessInstanceWithVariablesDto
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 ProcessInstanceWithVariablesDto
impl<'de> Deserialize<'de> for ProcessInstanceWithVariablesDto
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 ProcessInstanceWithVariablesDto
impl PartialEq for ProcessInstanceWithVariablesDto
Source§fn eq(&self, other: &ProcessInstanceWithVariablesDto) -> bool
fn eq(&self, other: &ProcessInstanceWithVariablesDto) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessInstanceWithVariablesDto
Auto Trait Implementations§
impl Freeze for ProcessInstanceWithVariablesDto
impl RefUnwindSafe for ProcessInstanceWithVariablesDto
impl Send for ProcessInstanceWithVariablesDto
impl Sync for ProcessInstanceWithVariablesDto
impl Unpin for ProcessInstanceWithVariablesDto
impl UnwindSafe for ProcessInstanceWithVariablesDto
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