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