pub struct ElfDebugInfo {
pub data: Vec<u8>,
}Expand description
Debug information for a native ELF binary, packaged as a ZIP with the
DWARF-bearing binary stored as dwarf at the root plus an optional
__source/ bundle — the same layout as AppleDsym.
Fields§
§data: Vec<u8>Trait Implementations§
Source§impl Clone for ElfDebugInfo
impl Clone for ElfDebugInfo
Source§fn clone(&self) -> ElfDebugInfo
fn clone(&self) -> ElfDebugInfo
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 ElfDebugInfo
impl Debug for ElfDebugInfo
impl Eq for ElfDebugInfo
Source§impl PartialEq for ElfDebugInfo
impl PartialEq for ElfDebugInfo
Source§fn eq(&self, other: &ElfDebugInfo) -> bool
fn eq(&self, other: &ElfDebugInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ElfDebugInfo
Auto Trait Implementations§
impl Freeze for ElfDebugInfo
impl RefUnwindSafe for ElfDebugInfo
impl Send for ElfDebugInfo
impl Sync for ElfDebugInfo
impl Unpin for ElfDebugInfo
impl UnsafeUnpin for ElfDebugInfo
impl UnwindSafe for ElfDebugInfo
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