pub struct Dynamic {
pub tag: i64,
pub val: u64,
}Expand description
A parsed dynamic entry in an ELF file.
Fields§
§tag: i64The entry tag.
One of the DT_* constants.
val: u64The entry value.
This may be an address, a string table offset, or some other value.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dynamic
impl RefUnwindSafe for Dynamic
impl Send for Dynamic
impl Sync for Dynamic
impl Unpin for Dynamic
impl UnsafeUnpin for Dynamic
impl UnwindSafe for Dynamic
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