pub struct WindowsMemoryModule {
pub capacity_mb: u64,
pub speed_mhz: u32,
pub memory_type: String,
pub manufacturer: Option<String>,
pub part_number: Option<String>,
pub bank_label: Option<String>,
pub device_locator: Option<String>,
}Fields§
§capacity_mb: u64§speed_mhz: u32§memory_type: String§manufacturer: Option<String>§part_number: Option<String>§bank_label: Option<String>§device_locator: Option<String>Trait Implementations§
Source§impl Clone for WindowsMemoryModule
impl Clone for WindowsMemoryModule
Source§fn clone(&self) -> WindowsMemoryModule
fn clone(&self) -> WindowsMemoryModule
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 moreAuto Trait Implementations§
impl Freeze for WindowsMemoryModule
impl RefUnwindSafe for WindowsMemoryModule
impl Send for WindowsMemoryModule
impl Sync for WindowsMemoryModule
impl Unpin for WindowsMemoryModule
impl UnwindSafe for WindowsMemoryModule
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