pub struct BuildCheckTracingEvent {
pub fields: BuildEventArgsFields,
pub tracing_data: Option<Vec<(String, String)>>,
}Expand description
BuildCheckTracing event — timing data for build check rules.
Fields§
§fields: BuildEventArgsFields§tracing_data: Option<Vec<(String, String)>>Raw tracing data: rule name → duration ticks as string.
Trait Implementations§
Source§impl Clone for BuildCheckTracingEvent
impl Clone for BuildCheckTracingEvent
Source§fn clone(&self) -> BuildCheckTracingEvent
fn clone(&self) -> BuildCheckTracingEvent
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 BuildCheckTracingEvent
impl Debug for BuildCheckTracingEvent
Source§impl Default for BuildCheckTracingEvent
impl Default for BuildCheckTracingEvent
Source§fn default() -> BuildCheckTracingEvent
fn default() -> BuildCheckTracingEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuildCheckTracingEvent
impl<'de> Deserialize<'de> for BuildCheckTracingEvent
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 BuildCheckTracingEvent
impl RefUnwindSafe for BuildCheckTracingEvent
impl Send for BuildCheckTracingEvent
impl Sync for BuildCheckTracingEvent
impl Unpin for BuildCheckTracingEvent
impl UnsafeUnpin for BuildCheckTracingEvent
impl UnwindSafe for BuildCheckTracingEvent
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