Enum smbioslib::MemorySize
source · [−]Expand description
Variants
NotInstalled
No Memory Device Installed in the Socket
Unknown
Memory Size is Unknown
SeeExtendedSize
The actual size is stored in the Extended Size field
Kilobytes(u16)
Size of Memory (KB)
Megabytes(u16)
Size of Memory (MB)
Trait Implementations
sourceimpl Debug for MemorySize
impl Debug for MemorySize
sourceimpl From<u16> for MemorySize
impl From<u16> for MemorySize
If the value is 0, no memory device is installed in the socket; if the size is unknown, the field value is FFFFh. If the size is 32 GB-1 MB or greater, the field value is 7FFFh and the actual size is stored in the Extended Size field. The granularity in which the value is specified depends on the setting of the most-significant bit (bit 15). If the bit is 0, the value is specified in megabyte units; if the bit is 1, the value is specified in kilobyte units. For example, the value 8100h identifies a 256 KB memory device and 0100h identifies a 256 MB memory device.
sourceimpl PartialEq<MemorySize> for MemorySize
impl PartialEq<MemorySize> for MemorySize
sourcefn eq(&self, other: &MemorySize) -> bool
fn eq(&self, other: &MemorySize) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MemorySize) -> bool
fn ne(&self, other: &MemorySize) -> bool
This method tests for !=
.
sourceimpl Serialize for MemorySize
impl Serialize for MemorySize
impl Eq for MemorySize
impl StructuralEq for MemorySize
impl StructuralPartialEq for MemorySize
Auto Trait Implementations
impl RefUnwindSafe for MemorySize
impl Send for MemorySize
impl Sync for MemorySize
impl Unpin for MemorySize
impl UnwindSafe for MemorySize
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