pub struct MemoryGetOutputMemory {
pub available: i64,
pub free: i64,
pub total: i64,
pub used: i64,
pub additional_properties: HashMap<String, Value>,
}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.
additional_properties: HashMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for MemoryGetOutputMemory
impl Clone for MemoryGetOutputMemory
Source§fn clone(&self) -> MemoryGetOutputMemory
fn clone(&self) -> MemoryGetOutputMemory
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 MemoryGetOutputMemory
impl Debug for MemoryGetOutputMemory
Source§impl<'de> Deserialize<'de> for MemoryGetOutputMemory
impl<'de> Deserialize<'de> for MemoryGetOutputMemory
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 MemoryGetOutputMemory
impl RefUnwindSafe for MemoryGetOutputMemory
impl Send for MemoryGetOutputMemory
impl Sync for MemoryGetOutputMemory
impl Unpin for MemoryGetOutputMemory
impl UnsafeUnpin for MemoryGetOutputMemory
impl UnwindSafe for MemoryGetOutputMemory
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