FirmwareVolumeHeader

Struct FirmwareVolumeHeader 

Source
#[repr(C)]
pub struct FirmwareVolumeHeader { pub zero_vector: [u8; 16], pub file_system_guid: [u8; 16], pub fv_length: u64, pub signature: u32, pub attributes: FvbAttributes2, pub header_length: u16, pub checksum: u16, pub ext_header_offset: u16, pub reserved: u8, pub revision: u8, }
Expand description

Firmware volume header defined in [UEFI-PI] section “3.2.1 Firmware Volume”.

A firmware volume based on a block device begins with a header that describes the features and layout of the firmware volume. This header includes a description of the capabilities, state, and block map of the device.

Fields§

§zero_vector: [u8; 16]§file_system_guid: [u8; 16]§fv_length: u64§signature: u32§attributes: FvbAttributes2§header_length: u16§checksum: u16§ext_header_offset: u16§reserved: u8§revision: u8

Implementations§

Source§

impl FirmwareVolumeHeader

Source

pub fn as_bytes(&self) -> &[u8]

Source

pub fn update_checksum(&mut self)

Source

pub fn validate_checksum(&self) -> bool

Trait Implementations§

Source§

impl Clone for FirmwareVolumeHeader

Source§

fn clone(&self) -> FirmwareVolumeHeader

Returns a duplicate 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 FirmwareVolumeHeader

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for FirmwareVolumeHeader

Source§

fn default() -> FirmwareVolumeHeader

Returns the “default value” for a type. Read more
Source§

impl<'a> TryFromCtx<'a, Endian> for FirmwareVolumeHeader

Source§

type Error = Error

Source§

fn try_from_ctx( src: &'a [u8], ctx: Endian, ) -> Result<(Self, usize), Self::Error>

Source§

impl<'a> TryIntoCtx<Endian> for &'a FirmwareVolumeHeader

Source§

type Error = Error

Source§

fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>

Source§

impl TryIntoCtx<Endian> for FirmwareVolumeHeader

Source§

type Error = Error

Source§

fn try_into_ctx(self, dst: &mut [u8], ctx: Endian) -> Result<usize, Self::Error>

Source§

impl Copy for FirmwareVolumeHeader

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.