pub struct MacOSMemoryModule {
pub size_gb: u64,
pub speed_mhz: u32,
pub memory_type: String,
pub manufacturer: String,
pub part_number: String,
pub serial_number: String,
pub slot: String,
}Fields§
§size_gb: u64§speed_mhz: u32§memory_type: String§manufacturer: String§part_number: String§serial_number: String§slot: StringTrait Implementations§
Source§impl Clone for MacOSMemoryModule
impl Clone for MacOSMemoryModule
Source§fn clone(&self) -> MacOSMemoryModule
fn clone(&self) -> MacOSMemoryModule
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 MacOSMemoryModule
impl RefUnwindSafe for MacOSMemoryModule
impl Send for MacOSMemoryModule
impl Sync for MacOSMemoryModule
impl Unpin for MacOSMemoryModule
impl UnwindSafe for MacOSMemoryModule
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