[][src]Struct elf_utilities::relocation::Rela64

#[repr(C)]pub struct Rela64 { /* fields omitted */ }

Implementations

impl Rela64[src]

pub fn size() -> Elf64Xword[src]

pub fn get_sym(&self) -> Elf64Xword[src]

pub fn get_type(&self) -> Elf64Xword[src]

pub fn get_offset(&self) -> Elf64Addr[src]

pub fn get_info(&self) -> Elf64Xword[src]

pub fn get_addend(&self) -> Elf64Sxword[src]

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

pub fn set_offset(&mut self, offset: Elf64Addr)[src]

pub fn set_info(&mut self, info: Elf64Xword)[src]

pub fn to_le_bytes(&self) -> Vec<u8>[src]

Create Vec from this.

Examples

use elf_utilities::relocation::Rela64;
let null_rel : Rela64 = Default::default();

assert_eq!([0].repeat(Rela64::size() as usize), null_rel.to_le_bytes());

pub fn deserialize(buf: &[u8], start: usize) -> Result<Self, Box<dyn Error>>[src]

Trait Implementations

impl Clone for Rela64[src]

impl Copy for Rela64[src]

impl Debug for Rela64[src]

impl Default for Rela64[src]

impl<'de> Deserialize<'de> for Rela64[src]

impl Eq for Rela64[src]

impl Hash for Rela64[src]

impl Ord for Rela64[src]

impl PartialEq<Rela64> for Rela64[src]

impl PartialOrd<Rela64> for Rela64[src]

impl Serialize for Rela64[src]

impl StructuralEq for Rela64[src]

impl StructuralPartialEq for Rela64[src]

Auto Trait Implementations

impl RefUnwindSafe for Rela64

impl Send for Rela64

impl Sync for Rela64

impl Unpin for Rela64

impl UnwindSafe for Rela64

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.