pub struct TaskStart {
pub task_id: TaskId,
pub event_time: Option<u32>,
pub message: String,
pub data_kind: TaskDataKind,
pub data: Value,
}Fields§
§task_id: TaskIdUnique id of the task with optional reference to parent task id
event_time: Option<u32>Timestamp of when the event started in milliseconds since Epoch.
message: StringMessage describing the task.
data_kind: TaskDataKindKind of data to expect in the data field. If this field is not set, the kind of data is
not specified.
- Kind names for specific tasks like compile, test, etc are specified in the protocol.
data: ValueOptional metadata about the task.
- Objects for specific tasks like compile, test, etc are specified in the protocol.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TaskStart
impl<'de> Deserialize<'de> for TaskStart
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 TaskStart
impl RefUnwindSafe for TaskStart
impl Send for TaskStart
impl Sync for TaskStart
impl Unpin for TaskStart
impl UnwindSafe for TaskStart
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