pub struct HistoryDocument {
pub id: String,
pub instance_id: String,
pub doc_type: String,
pub execution_id: u64,
pub event_id: u64,
pub event_data: String,
}Expand description
History event document.
id = “
Fields§
§id: String§instance_id: String§doc_type: String§execution_id: u64§event_id: u64§event_data: StringImplementations§
Trait Implementations§
Source§impl Clone for HistoryDocument
impl Clone for HistoryDocument
Source§fn clone(&self) -> HistoryDocument
fn clone(&self) -> HistoryDocument
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 HistoryDocument
impl Debug for HistoryDocument
Source§impl<'de> Deserialize<'de> for HistoryDocument
impl<'de> Deserialize<'de> for HistoryDocument
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
Auto Trait Implementations§
impl Freeze for HistoryDocument
impl RefUnwindSafe for HistoryDocument
impl Send for HistoryDocument
impl Sync for HistoryDocument
impl Unpin for HistoryDocument
impl UnsafeUnpin for HistoryDocument
impl UnwindSafe for HistoryDocument
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