pub struct MoeUnionStats {
pub calls: AtomicU64,
pub samples: AtomicU64,
pub unique_sum: AtomicU64,
pub slots_sum: AtomicU64,
}Expand description
Expert-union sampling counters for one model.
Fields§
§calls: AtomicU64§samples: AtomicU64§unique_sum: AtomicU64§slots_sum: AtomicU64Trait Implementations§
Source§impl Debug for MoeUnionStats
impl Debug for MoeUnionStats
Source§impl Default for MoeUnionStats
impl Default for MoeUnionStats
Source§fn default() -> MoeUnionStats
fn default() -> MoeUnionStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for MoeUnionStats
impl RefUnwindSafe for MoeUnionStats
impl Send for MoeUnionStats
impl Sync for MoeUnionStats
impl Unpin for MoeUnionStats
impl UnwindSafe for MoeUnionStats
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