pub struct NodeCapacity {
pub cpu_cores: u32,
pub memory_mb: u64,
pub storage_gb: u64,
pub network_mbps: u32,
}Expand description
Capacity information for a node.
Fields§
§cpu_cores: u32§memory_mb: u64§storage_gb: u64§network_mbps: u32Implementations§
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 · 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 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