pub struct ObjectWriteOptions {
pub emit_minimal_dwarf_sections: bool,
pub dwarf_decl_file_name: String,
}Expand description
Extra sections and metadata for ObjectWriter backends.
Fields§
§emit_minimal_dwarf_sections: boolWhen true, ElfWriter also emits minimal .debug_line, .debug_abbrev, and .debug_info.
dwarf_decl_file_name: StringFile name stored in DWARF line/info (used when emit_minimal_dwarf_sections is set).
Trait Implementations§
Source§impl Clone for ObjectWriteOptions
impl Clone for ObjectWriteOptions
Source§fn clone(&self) -> ObjectWriteOptions
fn clone(&self) -> ObjectWriteOptions
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 ObjectWriteOptions
impl Debug for ObjectWriteOptions
Auto Trait Implementations§
impl Freeze for ObjectWriteOptions
impl RefUnwindSafe for ObjectWriteOptions
impl Send for ObjectWriteOptions
impl Sync for ObjectWriteOptions
impl Unpin for ObjectWriteOptions
impl UnsafeUnpin for ObjectWriteOptions
impl UnwindSafe for ObjectWriteOptions
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