pub struct ProcessHistoryEntry {
pub element_id: String,
pub transition: String,
pub at: String,
}Expand description
ProcessHistoryEntry : one per-element transition record. Not currently populated by the engine – always an empty array today (see ProcessInstanceStatus).
Fields§
§element_id: String§transition: String§at: StringImplementations§
Trait Implementations§
Source§impl Clone for ProcessHistoryEntry
impl Clone for ProcessHistoryEntry
Source§fn clone(&self) -> ProcessHistoryEntry
fn clone(&self) -> ProcessHistoryEntry
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 Debug for ProcessHistoryEntry
impl Debug for ProcessHistoryEntry
Source§impl Default for ProcessHistoryEntry
impl Default for ProcessHistoryEntry
Source§fn default() -> ProcessHistoryEntry
fn default() -> ProcessHistoryEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessHistoryEntry
impl<'de> Deserialize<'de> for ProcessHistoryEntry
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 ProcessHistoryEntry
impl PartialEq for ProcessHistoryEntry
Source§impl Serialize for ProcessHistoryEntry
impl Serialize for ProcessHistoryEntry
impl StructuralPartialEq for ProcessHistoryEntry
Auto Trait Implementations§
impl Freeze for ProcessHistoryEntry
impl RefUnwindSafe for ProcessHistoryEntry
impl Send for ProcessHistoryEntry
impl Sync for ProcessHistoryEntry
impl Unpin for ProcessHistoryEntry
impl UnsafeUnpin for ProcessHistoryEntry
impl UnwindSafe for ProcessHistoryEntry
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