pub struct TenantCount {
pub tenant: TenantKey,
pub count: u64,
}Expand description
Tenant counter entry used in top-talker snapshots.
Fields§
§tenant: TenantKeyTenant identifier.
count: u64Observed count for this tenant.
Trait Implementations§
Source§impl Clone for TenantCount
impl Clone for TenantCount
Source§fn clone(&self) -> TenantCount
fn clone(&self) -> TenantCount
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 moreAuto Trait Implementations§
impl Freeze for TenantCount
impl RefUnwindSafe for TenantCount
impl Send for TenantCount
impl Sync for TenantCount
impl Unpin for TenantCount
impl UnwindSafe for TenantCount
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