Struct console_api::tasks::Task
source · [−]pub struct Task {
pub id: Option<Id>,
pub metadata: Option<MetaId>,
pub kind: i32,
pub fields: Vec<Field>,
pub parents: Vec<SpanId>,
pub location: Option<Location>,
}
Expand description
Data recorded when a new task is spawned.
Fields
id: Option<Id>
The task’s ID.
This uniquely identifies this task across all currently live tasks.
When the task’s stats change, or when the task completes, it will be
identified by this ID; if the client requires additional information
included in the Task
message, it should store that data and access it
by ID.
metadata: Option<MetaId>
The numeric ID of the task’s Metadata
.
This identifies the Metadata
that describes the tracing
span
corresponding to this task. The metadata for this ID will have been sent
in a prior RegisterMetadata
message.
kind: i32
The category of task this task belongs to.
fields: Vec<Field>
A list of Field
objects attached to this task.
parents: Vec<SpanId>
An ordered list of span IDs corresponding to the tracing
span context
in which this task was spawned.
The first span ID in this list is the immediate parent, followed by that span’s parent, and so on. The final ID is the root span of the current trace.
If this is empty, there were no active spans when the task was spawned.
These IDs may correspond to tracing
spans which are not tasks, if
additional trace data is being collected.
location: Option<Location>
The location in code where the task was spawned.
Implementations
Trait Implementations
Returns the encoded length of the message without a length delimiter.
Encodes the message to a buffer. Read more
Encodes the message to a newly allocated buffer.
Encodes the message with a length-delimiter to a buffer. Read more
Encodes the message with a length-delimiter to a newly allocated buffer.
Decodes an instance of the message from a buffer. Read more
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
B: Buf,
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Decodes an instance of the message from a buffer, and merges it into self
. Read more
Decodes a length-delimited instance of the message from buffer, and
merges it into self
. Read more
Auto Trait Implementations
impl RefUnwindSafe for Task
impl UnwindSafe for Task
Blanket Implementations
Mutably borrows from an owned value. Read more
Wrap the input message T
in a tonic::Request
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more