pub struct CompatStats {
pub users: usize,
pub tokens: usize,
pub ssh_keys: usize,
pub releases: usize,
}Expand description
Statistics about stored data.
Fields§
§users: usizeNumber of users.
tokens: usizeNumber of tokens.
ssh_keys: usizeNumber of SSH keys.
releases: usizeNumber of releases.
Trait Implementations§
Source§impl Clone for CompatStats
impl Clone for CompatStats
Source§fn clone(&self) -> CompatStats
fn clone(&self) -> CompatStats
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 CompatStats
impl Debug for CompatStats
Auto Trait Implementations§
impl Freeze for CompatStats
impl RefUnwindSafe for CompatStats
impl Send for CompatStats
impl Sync for CompatStats
impl Unpin for CompatStats
impl UnsafeUnpin for CompatStats
impl UnwindSafe for CompatStats
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