pub struct ExportSection {
pub name: String,
pub address: String,
pub size: u32,
pub region: String,
pub flags: Vec<String>,
}Expand description
A single section entry for export.
Fields§
§name: String§address: String§size: u32§region: String§flags: Vec<String>Trait Implementations§
Source§impl Clone for ExportSection
impl Clone for ExportSection
Source§fn clone(&self) -> ExportSection
fn clone(&self) -> ExportSection
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 ExportSection
impl Debug for ExportSection
Auto Trait Implementations§
impl Freeze for ExportSection
impl RefUnwindSafe for ExportSection
impl Send for ExportSection
impl Sync for ExportSection
impl Unpin for ExportSection
impl UnsafeUnpin for ExportSection
impl UnwindSafe for ExportSection
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