Enum RecordKind

Source
#[repr(u32)]
pub enum RecordKind {
Show 47 variants Unused = 0, Memory = 1, Hwrpb = 2, Mainboard = 3, Version = 4, ExtraVersion = 5, Build = 6, CompileTime = 7, CompileBy = 8, CompileHost = 9, CompileDomain = 10, Compiler = 11, Linker = 12, Assembler = 13, Serial = 15, Console = 16, Forward = 17, Framebuffer = 18, Gpio = 19, Timestamps = 22, CbMemConsole = 23, MrcCache = 24, Vbnv = 25, VbootHandoff = 32, X86RomMtrr = 33, Dma = 34, RamOops = 35, AcpiGnvs = 36, BoardId = 37, WifiCalibration = 39, RamCode = 40, SpiFlash = 41, SerialNo = 42, Mtc = 43, Vpd = 44, SkuId = 45, BootMediaParams = 48, CbMemEntry = 49, TscInfo = 50, MacAddrs = 51, TcpaLog = 52, VersionTimestamp = 38, CmosOptionTable = 200, Option = 201, OptionEnum = 202, OptionDefaults = 203, OptionChecksum = 204,
}

Variants§

§

Unused = 0

§

Memory = 1

§

Hwrpb = 2

§

Mainboard = 3

§

Version = 4

§

ExtraVersion = 5

§

Build = 6

§

CompileTime = 7

§

CompileBy = 8

§

CompileHost = 9

§

CompileDomain = 10

§

Compiler = 11

§

Linker = 12

§

Assembler = 13

§

Serial = 15

§

Console = 16

§

Forward = 17

§

Framebuffer = 18

§

Gpio = 19

§

Timestamps = 22

§

CbMemConsole = 23

§

MrcCache = 24

§

Vbnv = 25

§

VbootHandoff = 32

§

X86RomMtrr = 33

§

Dma = 34

§

RamOops = 35

§

AcpiGnvs = 36

§

BoardId = 37

§

WifiCalibration = 39

§

RamCode = 40

§

SpiFlash = 41

§

SerialNo = 42

§

Mtc = 43

§

Vpd = 44

§

SkuId = 45

§

BootMediaParams = 48

§

CbMemEntry = 49

§

TscInfo = 50

§

MacAddrs = 51

§

TcpaLog = 52

§

VersionTimestamp = 38

§

CmosOptionTable = 200

§

Option = 201

§

OptionEnum = 202

§

OptionDefaults = 203

§

OptionChecksum = 204

Trait Implementations§

Source§

impl Clone for RecordKind

Source§

fn clone(&self) -> RecordKind

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RecordKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.