Enum smbioslib::MemorySize[][src]

pub enum MemorySize {
    NotInstalled,
    Unknown,
    SeeExtendedSize,
    Kilobytes(u16),
    Megabytes(u16),
}

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

impl Debug for MemorySize[src]

impl Eq for MemorySize[src]

impl From<u16> for MemorySize[src]

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.

impl PartialEq<MemorySize> for MemorySize[src]

impl StructuralEq for MemorySize[src]

impl StructuralPartialEq for MemorySize[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.