pub struct SectionEntry {
pub name: String,
pub offset: u64,
pub length: u64,
pub capacity: u64,
pub flags: u32,
pub checksum: u32,
}Expand description
SectionEntry - for on-disk section table entry
Byte layout: Offset Size Field
0x00 32 name (UTF-8, zero-padded) 0x20 8 offset 0x28 8 length 0x30 8 capacity 0x38 4 flags 0x3C 4 checksum 0x40 24 reserved
Total: 64
Fields§
§name: String§offset: u64§length: u64§capacity: u64§flags: u32§checksum: u32Trait 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
Source§impl PartialEq for SectionEntry
impl PartialEq for SectionEntry
Source§fn eq(&self, other: &SectionEntry) -> bool
fn eq(&self, other: &SectionEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq 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