pub struct InternerStats {
pub unique_tags: usize,
pub intern_calls: usize,
pub cache_hits: usize,
pub hit_rate: f64,
}Expand description
인터너 통계
Fields§
고유 태그 수
intern_calls: usizeintern 호출 횟수
cache_hits: usize캐시 히트 횟수
hit_rate: f64캐시 히트율
Implementations§
Trait Implementations§
Source§impl Clone for InternerStats
impl Clone for InternerStats
Source§fn clone(&self) -> InternerStats
fn clone(&self) -> InternerStats
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 InternerStats
impl Debug for InternerStats
impl Copy for InternerStats
Auto Trait Implementations§
impl Freeze for InternerStats
impl RefUnwindSafe for InternerStats
impl Send for InternerStats
impl Sync for InternerStats
impl Unpin for InternerStats
impl UnsafeUnpin for InternerStats
impl UnwindSafe for InternerStats
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