Struct windows_sys::Win32::System::SystemInformation::MEMORYSTATUS
[−]#[repr(C)]pub struct MEMORYSTATUS {
pub dwLength: u32,
pub dwMemoryLoad: u32,
pub dwTotalPhys: usize,
pub dwAvailPhys: usize,
pub dwTotalPageFile: usize,
pub dwAvailPageFile: usize,
pub dwTotalVirtual: usize,
pub dwAvailVirtual: usize,
}
Expand description
Required features: "Win32_System_SystemInformation"
Fields
dwLength: u32
dwMemoryLoad: u32
dwTotalPhys: usize
dwAvailPhys: usize
dwTotalPageFile: usize
dwAvailPageFile: usize
dwTotalVirtual: usize
dwAvailVirtual: usize
Trait Implementations
impl Clone for MEMORYSTATUS
impl Clone for MEMORYSTATUS
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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