pub struct NodesStatusStatusResponseDataMemory {
pub available: i64,
pub free: i64,
pub total: i64,
pub used: i64,
}Fields§
§available: i64The available memory in bytes.
free: i64The free memory in bytes.
total: i64The total memory in bytes.
used: i64The used memory in bytes.
Implementations§
Trait Implementations§
Source§impl Clone for NodesStatusStatusResponseDataMemory
impl Clone for NodesStatusStatusResponseDataMemory
Source§fn clone(&self) -> NodesStatusStatusResponseDataMemory
fn clone(&self) -> NodesStatusStatusResponseDataMemory
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 Default for NodesStatusStatusResponseDataMemory
impl Default for NodesStatusStatusResponseDataMemory
Source§fn default() -> NodesStatusStatusResponseDataMemory
fn default() -> NodesStatusStatusResponseDataMemory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesStatusStatusResponseDataMemory
impl<'de> Deserialize<'de> for NodesStatusStatusResponseDataMemory
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
Source§impl PartialEq for NodesStatusStatusResponseDataMemory
impl PartialEq for NodesStatusStatusResponseDataMemory
Source§fn eq(&self, other: &NodesStatusStatusResponseDataMemory) -> bool
fn eq(&self, other: &NodesStatusStatusResponseDataMemory) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodesStatusStatusResponseDataMemory
Auto Trait Implementations§
impl Freeze for NodesStatusStatusResponseDataMemory
impl RefUnwindSafe for NodesStatusStatusResponseDataMemory
impl Send for NodesStatusStatusResponseDataMemory
impl Sync for NodesStatusStatusResponseDataMemory
impl Unpin for NodesStatusStatusResponseDataMemory
impl UnsafeUnpin for NodesStatusStatusResponseDataMemory
impl UnwindSafe for NodesStatusStatusResponseDataMemory
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