#[repr(C)]pub struct MEMORYSTATUS {
pub dwLength: DWORD,
pub dwMemoryLoad: DWORD,
pub dwTotalPhys: SIZE_T,
pub dwAvailPhys: SIZE_T,
pub dwTotalPageFile: SIZE_T,
pub dwAvailPageFile: SIZE_T,
pub dwTotalVirtual: SIZE_T,
pub dwAvailVirtual: SIZE_T,
}
Fields
dwLength: DWORD
dwMemoryLoad: DWORD
dwTotalPhys: SIZE_T
dwAvailPhys: SIZE_T
dwTotalPageFile: SIZE_T
dwAvailPageFile: SIZE_T
dwTotalVirtual: SIZE_T
dwAvailVirtual: SIZE_T
Trait Implementations
sourceimpl Clone for MEMORYSTATUS
impl Clone for MEMORYSTATUS
sourcefn clone(&self) -> MEMORYSTATUS
fn clone(&self) -> MEMORYSTATUS
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for MEMORYSTATUS
Auto Trait Implementations
impl RefUnwindSafe for MEMORYSTATUS
impl Send for MEMORYSTATUS
impl Sync for MEMORYSTATUS
impl Unpin for MEMORYSTATUS
impl UnwindSafe for MEMORYSTATUS
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more