pub enum RelocationTable<'a> {
WithAddend(DynamicAddendRelocations<'a>),
WithoutAddend(DynamicRelocations<'a>),
}
Expand description
A dynamic libraries plt maybe be addend entries or non addend entries
Variants§
WithAddend(DynamicAddendRelocations<'a>)
WithoutAddend(DynamicRelocations<'a>)
Auto Trait Implementations§
impl<'a> Freeze for RelocationTable<'a>
impl<'a> RefUnwindSafe for RelocationTable<'a>
impl<'a> Send for RelocationTable<'a>
impl<'a> Sync for RelocationTable<'a>
impl<'a> Unpin for RelocationTable<'a>
impl<'a> UnwindSafe for RelocationTable<'a>
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