pub struct SectionOptions {
pub name: String,
pub kind: SectionKind,
pub start_address: u32,
pub end_address: u32,
pub alignment: u32,
pub functions: Option<BTreeMap<u32, Function>>,
}Fields§
§name: String§kind: SectionKind§start_address: u32§end_address: u32§alignment: u32§functions: Option<BTreeMap<u32, Function>>Auto Trait Implementations§
impl Freeze for SectionOptions
impl RefUnwindSafe for SectionOptions
impl Send for SectionOptions
impl Sync for SectionOptions
impl Unpin for SectionOptions
impl UnwindSafe for SectionOptions
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