pub struct MoeResidencyStats {
pub gpu_expert_calls: u64,
pub cpu_expert_calls: u64,
pub gpu_tokens: u64,
pub cpu_tokens: u64,
}Fields§
§gpu_expert_calls: u64§cpu_expert_calls: u64§gpu_tokens: u64§cpu_tokens: u64Trait Implementations§
Source§impl Clone for MoeResidencyStats
impl Clone for MoeResidencyStats
Source§fn clone(&self) -> MoeResidencyStats
fn clone(&self) -> MoeResidencyStats
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 MoeResidencyStats
impl Debug for MoeResidencyStats
Source§impl Default for MoeResidencyStats
impl Default for MoeResidencyStats
Source§fn default() -> MoeResidencyStats
fn default() -> MoeResidencyStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MoeResidencyStats
impl RefUnwindSafe for MoeResidencyStats
impl Send for MoeResidencyStats
impl Sync for MoeResidencyStats
impl Unpin for MoeResidencyStats
impl UnsafeUnpin for MoeResidencyStats
impl UnwindSafe for MoeResidencyStats
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