Skip to main content

Errata

Struct Errata 

Source
pub struct Errata {
    pub type0_legacy_server: bool,
    pub type0_legacy_server_box: bool,
    pub core_record_size_bytes: bool,
}
Expand description

Collection of Intel Crash Log erratas

Fields§

§type0_legacy_server: bool

Type0 server legacy header

Some Intel(R) products in the server segment are using legacy Crash Log record headers with Type0, which has a different layout compared with the currently defined Type0 Header.

§type0_legacy_server_box: bool

Type0 server legacy header box record

Some Intel(R) products in the server segment that are using the legacy Crash Log record header with Type0 are using the PCORE record type with the same functionality as a BOX record.

§core_record_size_bytes: bool

Core record using record size in bytes

The Crash Log headers have their sizes in DWORDs, but for some products that are using ECORE and PCORE Crash Log records, their sizes are written in bytes.

Implementations§

Source§

impl Errata

Source

pub fn from_version(version: &Version) -> Self

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> 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.