[][src]Union uefi_ffi::EFI_IFR_TYPE_VALUE

#[repr(C, packed)]pub union EFI_IFR_TYPE_VALUE {
    pub u8_: u8,
    pub u16_: u16,
    pub u32_: u32,
    pub u64_: u64,
    pub b: bool,
    pub time: EFI_HII_TIME,
    pub date: EFI_HII_DATE,
    pub string: EFI_STRING_ID,
    pub ref_: EFI_HII_REF,
    // some fields omitted
}

Fields

u8_: u8u16_: u16u32_: u32u64_: u64b: booltime: EFI_HII_TIMEdate: EFI_HII_DATEstring: EFI_STRING_IDref_: EFI_HII_REF

Trait Implementations

impl Clone for EFI_IFR_TYPE_VALUE[src]

impl Copy for EFI_IFR_TYPE_VALUE[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.