pub enum ProcessInstanceState {
Active,
Completed,
Terminated,
Suspended,
Failed,
}Expand description
Process Instance State
Variants§
Active
Process is active and executing
Completed
Process is completed
Terminated
Process is terminated
Suspended
Process is suspended
Failed
Process execution failed
Trait Implementations§
Source§impl Clone for ProcessInstanceState
impl Clone for ProcessInstanceState
Source§fn clone(&self) -> ProcessInstanceState
fn clone(&self) -> ProcessInstanceState
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 moreimpl Copy for ProcessInstanceState
Source§impl Debug for ProcessInstanceState
impl Debug for ProcessInstanceState
impl Eq for ProcessInstanceState
Source§impl PartialEq for ProcessInstanceState
impl PartialEq for ProcessInstanceState
Source§fn eq(&self, other: &ProcessInstanceState) -> bool
fn eq(&self, other: &ProcessInstanceState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessInstanceState
Auto Trait Implementations§
impl Freeze for ProcessInstanceState
impl RefUnwindSafe for ProcessInstanceState
impl Send for ProcessInstanceState
impl Sync for ProcessInstanceState
impl Unpin for ProcessInstanceState
impl UnsafeUnpin for ProcessInstanceState
impl UnwindSafe for ProcessInstanceState
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