zfi 0.2.0

Zero-cost and safe interface to UEFI firmware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Represents an `EFI_TIME`.
#[repr(C)]
pub struct Time {
    year: u16,
    month: u8,
    day: u8,
    hour: u8,
    minute: u8,
    second: u8,
    pad1: u8,
    nanosecond: u32,
    time_zone: i16,
    daylight: u8,
    pad2: u8,
}