pub struct ReplayControlRecord {
pub trace_id: String,
pub node_id: String,
pub kind: ControlNodeKind,
pub result: ControlNodeResult,
pub generated_nodes: Vec<WorkflowNode>,
}Fields§
§trace_id: String§node_id: String§kind: ControlNodeKind§result: ControlNodeResult§generated_nodes: Vec<WorkflowNode>Trait Implementations§
Source§impl Clone for ReplayControlRecord
impl Clone for ReplayControlRecord
Source§fn clone(&self) -> ReplayControlRecord
fn clone(&self) -> ReplayControlRecord
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 ReplayControlRecord
impl Debug for ReplayControlRecord
Source§impl<'de> Deserialize<'de> for ReplayControlRecord
impl<'de> Deserialize<'de> for ReplayControlRecord
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
impl Eq for ReplayControlRecord
Source§impl PartialEq for ReplayControlRecord
impl PartialEq for ReplayControlRecord
Source§fn eq(&self, other: &ReplayControlRecord) -> bool
fn eq(&self, other: &ReplayControlRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReplayControlRecord
impl Serialize for ReplayControlRecord
impl StructuralPartialEq for ReplayControlRecord
Auto Trait Implementations§
impl Freeze for ReplayControlRecord
impl RefUnwindSafe for ReplayControlRecord
impl Send for ReplayControlRecord
impl Sync for ReplayControlRecord
impl Unpin for ReplayControlRecord
impl UnsafeUnpin for ReplayControlRecord
impl UnwindSafe for ReplayControlRecord
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