extern structstd.os.uefi.hii.PackageList[src]

The header found at the start of each package list.

Fields

package_list_guid: Guid
package_list_length: u32

The size of the package list (in bytes), including the header.

Source Code

Source code
pub const PackageList = extern struct {
    package_list_guid: Guid,

    /// The size of the package list (in bytes), including the header.
    package_list_length: u32,

    // TODO implement iterator
}