Struct object::read::Relocation[][src]

pub struct Relocation { /* fields omitted */ }

A relocation entry.

Implementations

impl Relocation[src]

pub fn kind(&self) -> RelocationKind[src]

The operation used to calculate the result of the relocation.

pub fn encoding(&self) -> RelocationEncoding[src]

Information about how the result of the relocation operation is encoded in the place.

pub fn size(&self) -> u8[src]

The size in bits of the place of the relocation.

If 0, then the size is determined by the relocation kind.

pub fn target(&self) -> RelocationTarget[src]

The target of the relocation.

pub fn addend(&self) -> i64[src]

The addend to use in the relocation calculation.

pub fn set_addend(&mut self, addend: i64)[src]

Set the addend to use in the relocation calculation.

pub fn has_implicit_addend(&self) -> bool[src]

Returns true if there is an implicit addend stored in the data at the offset to be relocated.

Trait Implementations

impl Debug for Relocation[src]

Auto Trait Implementations

impl Send for Relocation

impl Sync for Relocation

impl Unpin for Relocation

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.