pub enum DynamicRelocationKind {
Copy,
Irelative,
DtpMod,
DtpOff,
TlsDesc,
TpOff,
Relative,
Absolute,
GotEntry,
JumpSlot,
}
Variants§
Implementations§
Source§impl DynamicRelocationKind
impl DynamicRelocationKind
pub fn from_x86_64_r_type(r_type: u32) -> Option<Self>
pub fn x86_64_r_type(self) -> u32
pub fn from_aarch64_r_type(r_type: u32) -> Option<Self>
pub fn aarch64_r_type(&self) -> u32
Trait Implementations§
Source§impl Clone for DynamicRelocationKind
impl Clone for DynamicRelocationKind
Source§fn clone(&self) -> DynamicRelocationKind
fn clone(&self) -> DynamicRelocationKind
Returns a duplicate of the value. Read more
1.0.0 · 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 DynamicRelocationKind
impl Debug for DynamicRelocationKind
Source§impl PartialEq for DynamicRelocationKind
impl PartialEq for DynamicRelocationKind
impl Copy for DynamicRelocationKind
impl Eq for DynamicRelocationKind
impl StructuralPartialEq for DynamicRelocationKind
Auto Trait Implementations§
impl Freeze for DynamicRelocationKind
impl RefUnwindSafe for DynamicRelocationKind
impl Send for DynamicRelocationKind
impl Sync for DynamicRelocationKind
impl Unpin for DynamicRelocationKind
impl UnwindSafe for DynamicRelocationKind
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