pub struct FoundVersion {
pub agesa_version: String,
pub absolute_address: usize,
pub surrounding_region: MemoryRegion,
}
Expand description
An AGESA version found in physical memory.
Fields§
§agesa_version: String
The complete version string (may include trailing whitespace).
absolute_address: usize
The absolute start address of this version in physical memory.
surrounding_region: MemoryRegion
The memory region this version is located in.
Implementations§
Source§impl FoundVersion
impl FoundVersion
Sourcepub fn offset_in_region(&self) -> usize
pub fn offset_in_region(&self) -> usize
Return this version’s offset within its surrounding memory region.
Trait Implementations§
Source§impl PartialEq for FoundVersion
impl PartialEq for FoundVersion
impl StructuralPartialEq for FoundVersion
Auto Trait Implementations§
impl Freeze for FoundVersion
impl RefUnwindSafe for FoundVersion
impl Send for FoundVersion
impl Sync for FoundVersion
impl Unpin for FoundVersion
impl UnwindSafe for FoundVersion
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