pub struct VolleyStats {
pub batch_ms: u128,
pub fallback_ms: u128,
pub batch_events: usize,
pub fallback_events: usize,
}Expand description
Stage timing + hit counts for the boot log — the volley is a performance feature, and every regression so far was found by reading these.
Fields§
§batch_ms: u128§fallback_ms: u128§batch_events: usize§fallback_events: usizeTrait Implementations§
Source§impl Default for VolleyStats
impl Default for VolleyStats
Source§fn default() -> VolleyStats
fn default() -> VolleyStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VolleyStats
impl RefUnwindSafe for VolleyStats
impl Send for VolleyStats
impl Sync for VolleyStats
impl Unpin for VolleyStats
impl UnsafeUnpin for VolleyStats
impl UnwindSafe for VolleyStats
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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