pub struct BinarySection {
pub header: SectionHeader,
pub data: Vec<u8>,
}Expand description
A named section within an extended binary file.
Fields§
§header: SectionHeader§data: Vec<u8>Implementations§
Source§impl BinarySection
impl BinarySection
Auto Trait Implementations§
impl Freeze for BinarySection
impl RefUnwindSafe for BinarySection
impl Send for BinarySection
impl Sync for BinarySection
impl Unpin for BinarySection
impl UnsafeUnpin for BinarySection
impl UnwindSafe for BinarySection
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