[][src]Struct uefi_ffi::EFI_TIME

#[repr(C)]pub struct EFI_TIME {
    pub Year: u16,
    pub Month: u8,
    pub Day: u8,
    pub Hour: u8,
    pub Minute: u8,
    pub Second: u8,
    pub Pad1: u8,
    pub Nanosecond: u32,
    pub TimeZone: i16,
    pub Daylight: u8,
    pub Pad2: u8,
}

Fields

Year: u16Month: u8Day: u8Hour: u8Minute: u8Second: u8Pad1: u8Nanosecond: u32TimeZone: i16Daylight: u8Pad2: u8

Trait Implementations

impl Clone for EFI_TIME[src]

impl Copy for EFI_TIME[src]

impl Debug for EFI_TIME[src]

Auto Trait Implementations

impl Send for EFI_TIME

impl Sync for EFI_TIME

impl Unpin for EFI_TIME

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.