pub struct SectionEntry {
pub name: String,
pub access_class: AccessClass,
pub offset: u64,
pub length: u64,
pub sha256: String,
}Expand description
One access-class section: a contiguous, digest-verified byte range.
Fields§
§name: StringSection name, unique within the artifact.
access_class: AccessClassHow the runtime touches it.
offset: u64Absolute offset into the file.
length: u64Byte length.
sha256: StringLowercase-hex SHA-256 of the section bytes.
Implementations§
Trait Implementations§
Source§impl Clone for SectionEntry
impl Clone for SectionEntry
Source§fn clone(&self) -> SectionEntry
fn clone(&self) -> SectionEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SectionEntry
impl Debug for SectionEntry
impl Eq for SectionEntry
Source§impl PartialEq for SectionEntry
impl PartialEq for SectionEntry
impl StructuralPartialEq for SectionEntry
Auto Trait Implementations§
impl Freeze for SectionEntry
impl RefUnwindSafe for SectionEntry
impl Send for SectionEntry
impl Sync for SectionEntry
impl Unpin for SectionEntry
impl UnsafeUnpin for SectionEntry
impl UnwindSafe for SectionEntry
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