pub struct DeploymentStats {
pub nodes_registered: usize,
pub nodes_draining: usize,
pub nodes_offline: usize,
pub stations_assigned: usize,
pub stations_moved: usize,
pub stations_unassigned: usize,
pub placements_rejected_capacity: usize,
pub stale_nodes_detected: usize,
}Expand description
Deployment route table statistics.
Fields§
§nodes_registered: usizeNodes registered.
nodes_draining: usizeNodes marked draining.
nodes_offline: usizeNodes marked offline.
stations_assigned: usizeStation assignments created.
stations_moved: usizeStation routes moved.
stations_unassigned: usizeStation routes removed.
placements_rejected_capacity: usizePlacement attempts rejected by capacity.
stale_nodes_detected: usizeStale nodes detected.
Trait Implementations§
Source§impl Clone for DeploymentStats
impl Clone for DeploymentStats
Source§fn clone(&self) -> DeploymentStats
fn clone(&self) -> DeploymentStats
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 moreimpl Copy for DeploymentStats
Source§impl Debug for DeploymentStats
impl Debug for DeploymentStats
Source§impl Default for DeploymentStats
impl Default for DeploymentStats
Source§fn default() -> DeploymentStats
fn default() -> DeploymentStats
Returns the “default value” for a type. Read more
impl Eq for DeploymentStats
Source§impl PartialEq for DeploymentStats
impl PartialEq for DeploymentStats
impl StructuralPartialEq for DeploymentStats
Auto Trait Implementations§
impl Freeze for DeploymentStats
impl RefUnwindSafe for DeploymentStats
impl Send for DeploymentStats
impl Sync for DeploymentStats
impl Unpin for DeploymentStats
impl UnsafeUnpin for DeploymentStats
impl UnwindSafe for DeploymentStats
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