Struct object::read::Relocation [−][src]
pub struct Relocation { /* fields omitted */ }A relocation entry.
Implementations
impl Relocation[src]
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.