pub struct DistributedStats {
pub cache_hits: u64,
pub cache_misses: u64,
pub successful_loads: u64,
pub failed_loads: u64,
pub total_load_time: Duration,
pub node_load_times: HashMap<String, Vec<Duration>>,
pub bytes_transferred: u64,
}Expand description
Statistics for distributed weight loading
Fields§
§cache_hits: u64§cache_misses: u64§successful_loads: u64§failed_loads: u64§total_load_time: Duration§node_load_times: HashMap<String, Vec<Duration>>§bytes_transferred: u64Implementations§
Source§impl DistributedStats
impl DistributedStats
pub fn cache_hit_rate(&self) -> f64
pub fn success_rate(&self) -> f64
pub fn average_load_time(&self) -> Duration
Trait Implementations§
Source§impl Debug for DistributedStats
impl Debug for DistributedStats
Source§impl Default for DistributedStats
impl Default for DistributedStats
Source§fn default() -> DistributedStats
fn default() -> DistributedStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DistributedStats
impl RefUnwindSafe for DistributedStats
impl Send for DistributedStats
impl Sync for DistributedStats
impl Unpin for DistributedStats
impl UnsafeUnpin for DistributedStats
impl UnwindSafe for DistributedStats
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