pub struct NamespaceCount {
pub namespace: String,
pub memories: usize,
}Expand description
One namespace’s memory count.
Fields§
§namespace: StringThe namespace id.
memories: usizeMemories in that namespace.
Trait Implementations§
Source§impl Clone for NamespaceCount
impl Clone for NamespaceCount
Source§fn clone(&self) -> NamespaceCount
fn clone(&self) -> NamespaceCount
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 NamespaceCount
impl Debug for NamespaceCount
impl Eq for NamespaceCount
Source§impl PartialEq for NamespaceCount
impl PartialEq for NamespaceCount
impl StructuralPartialEq for NamespaceCount
Auto Trait Implementations§
impl Freeze for NamespaceCount
impl RefUnwindSafe for NamespaceCount
impl Send for NamespaceCount
impl Sync for NamespaceCount
impl Unpin for NamespaceCount
impl UnsafeUnpin for NamespaceCount
impl UnwindSafe for NamespaceCount
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