pub struct VirtualDepTelemetry {
pub candidate_vertices_total: usize,
pub vdeps_vertices_total: usize,
pub vdeps_edges_total: usize,
pub builder_elapsed_ms_total: u128,
pub schedule_virtual_passes: usize,
pub schedule_static_passes: usize,
pub replan_iterations: usize,
pub changed_vdeps_total: usize,
pub bailout_reason: Option<&'static str>,
pub fallback_mode_activations: u64,
}Fields§
§candidate_vertices_total: usize§vdeps_vertices_total: usize§vdeps_edges_total: usize§builder_elapsed_ms_total: u128§schedule_virtual_passes: usize§schedule_static_passes: usize§replan_iterations: usize§changed_vdeps_total: usize§bailout_reason: Option<&'static str>§fallback_mode_activations: u64Trait Implementations§
Source§impl Clone for VirtualDepTelemetry
impl Clone for VirtualDepTelemetry
Source§fn clone(&self) -> VirtualDepTelemetry
fn clone(&self) -> VirtualDepTelemetry
Returns a duplicate of the value. Read more
1.0.0 · 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 VirtualDepTelemetry
impl Debug for VirtualDepTelemetry
Source§impl Default for VirtualDepTelemetry
impl Default for VirtualDepTelemetry
Source§fn default() -> VirtualDepTelemetry
fn default() -> VirtualDepTelemetry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VirtualDepTelemetry
impl RefUnwindSafe for VirtualDepTelemetry
impl Send for VirtualDepTelemetry
impl Sync for VirtualDepTelemetry
impl Unpin for VirtualDepTelemetry
impl UnsafeUnpin for VirtualDepTelemetry
impl UnwindSafe for VirtualDepTelemetry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more