pub struct ProcessInstanceDto {
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§
§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§
Source§impl ProcessInstanceDto
impl ProcessInstanceDto
pub fn new() -> ProcessInstanceDto
Trait Implementations§
Source§impl Clone for ProcessInstanceDto
impl Clone for ProcessInstanceDto
Source§fn clone(&self) -> ProcessInstanceDto
fn clone(&self) -> ProcessInstanceDto
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 Debug for ProcessInstanceDto
impl Debug for ProcessInstanceDto
Source§impl<'de> Deserialize<'de> for ProcessInstanceDto
impl<'de> Deserialize<'de> for ProcessInstanceDto
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 ProcessInstanceDto
impl PartialEq for ProcessInstanceDto
Source§impl Serialize for ProcessInstanceDto
impl Serialize for ProcessInstanceDto
impl StructuralPartialEq for ProcessInstanceDto
Auto Trait Implementations§
impl Freeze for ProcessInstanceDto
impl RefUnwindSafe for ProcessInstanceDto
impl Send for ProcessInstanceDto
impl Sync for ProcessInstanceDto
impl Unpin for ProcessInstanceDto
impl UnwindSafe for ProcessInstanceDto
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