pub struct EndNode {
pub trace_id: Uuid,
pub node_idx: NodeIdx,
pub end_time: OffsetDateTime,
pub result: Result<(), String>,
}
Fields§
§trace_id: Uuid
§node_idx: NodeIdx
§end_time: OffsetDateTime
§result: Result<(), String>
Trait Implementations§
Source§impl Channels<TraceProtocol> for EndNode
impl Channels<TraceProtocol> for EndNode
Source§impl<'de> Deserialize<'de> for EndNode
impl<'de> Deserialize<'de> for EndNode
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 From<EndNode> for TraceProtocol
impl From<EndNode> for TraceProtocol
Auto Trait Implementations§
impl Freeze for EndNode
impl RefUnwindSafe for EndNode
impl Send for EndNode
impl Sync for EndNode
impl Unpin for EndNode
impl UnwindSafe for EndNode
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