pub struct NodeCapacity {
pub storage_total: u64,
pub storage_used: u64,
pub object_count: u64,
pub max_connections: u32,
pub active_connections: u32,
pub cpu_utilization: f64,
pub memory_utilization: f64,
}Expand description
Capacity and utilization metrics for a node
Fields§
§storage_total: u64Total storage in bytes
storage_used: u64Used storage in bytes
object_count: u64Object count on this node
max_connections: u32Maximum concurrent connections
active_connections: u32Current active connections
cpu_utilization: f64CPU utilization (0.0 – 1.0)
memory_utilization: f64Memory utilization (0.0 – 1.0)
Trait Implementations§
Source§impl Clone for NodeCapacity
impl Clone for NodeCapacity
Source§fn clone(&self) -> NodeCapacity
fn clone(&self) -> NodeCapacity
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 NodeCapacity
impl Debug for NodeCapacity
Source§impl<'de> Deserialize<'de> for NodeCapacity
impl<'de> Deserialize<'de> for NodeCapacity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NodeCapacity
impl RefUnwindSafe for NodeCapacity
impl Send for NodeCapacity
impl Sync for NodeCapacity
impl Unpin for NodeCapacity
impl UnsafeUnpin for NodeCapacity
impl UnwindSafe for NodeCapacity
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