#[repr(C)]pub struct FirmwareVolume {
pub header: Header,
pub base_address: PhysicalAddress,
pub length: u64,
}Expand description
Firmware Volume HOB, defined in [UEFI-PI Spec], section 5.7
Details the location of firmware volumes that contain firmware files.
Fields§
§header: Header§base_address: PhysicalAddress§length: u64Implementations§
Trait Implementations§
Source§impl Clone for FirmwareVolume
impl Clone for FirmwareVolume
Source§fn clone(&self) -> FirmwareVolume
fn clone(&self) -> FirmwareVolume
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FirmwareVolume
impl Debug for FirmwareVolume
Source§impl<'a> TryFromCtx<'a, Endian> for FirmwareVolumewhere
FirmwareVolume: 'a,
impl<'a> TryFromCtx<'a, Endian> for FirmwareVolumewhere
FirmwareVolume: 'a,
Source§impl<'a> TryIntoCtx<Endian> for &'a FirmwareVolume
impl<'a> TryIntoCtx<Endian> for &'a FirmwareVolume
Source§impl TryIntoCtx<Endian> for FirmwareVolume
impl TryIntoCtx<Endian> for FirmwareVolume
impl Copy for FirmwareVolume
Auto Trait Implementations§
impl Freeze for FirmwareVolume
impl RefUnwindSafe for FirmwareVolume
impl Send for FirmwareVolume
impl Sync for FirmwareVolume
impl Unpin for FirmwareVolume
impl UnwindSafe for FirmwareVolume
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more