pub struct ObjectElfOutput {
pub data: Vec<u8>,
pub reloc_offsets: Vec<u64>,
}Expand description
Result of a relocatable object file generation.
Fields§
§data: Vec<u8>Raw bytes of the generated ELF file.
reloc_offsets: Vec<u64>Offsets where relocations were applied.
Auto Trait Implementations§
impl Freeze for ObjectElfOutput
impl RefUnwindSafe for ObjectElfOutput
impl Send for ObjectElfOutput
impl Sync for ObjectElfOutput
impl Unpin for ObjectElfOutput
impl UnwindSafe for ObjectElfOutput
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