pub struct StartNode {
pub trace_id: Uuid,
pub node_info: NodeInfo,
pub start_time: OffsetDateTime,
}
Fields§
§trace_id: Uuid
§node_info: NodeInfo
§start_time: OffsetDateTime
Trait Implementations§
Source§impl Channels<TraceProtocol> for StartNode
impl Channels<TraceProtocol> for StartNode
Source§type Tx = Sender<Result<StartNodeResponse, RemoteError>>
type Tx = Sender<Result<StartNodeResponse, RemoteError>>
The sender type, can be either mpsc, oneshot or none
Source§impl<'de> Deserialize<'de> for StartNode
impl<'de> Deserialize<'de> for StartNode
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<StartNode> for TraceProtocol
impl From<StartNode> for TraceProtocol
Auto Trait Implementations§
impl Freeze for StartNode
impl RefUnwindSafe for StartNode
impl Send for StartNode
impl Sync for StartNode
impl Unpin for StartNode
impl UnwindSafe for StartNode
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