pub trait RelocationBase {
    // Provided methods
    fn is_pc_relative(&self) -> bool { ... }
    fn symbol(&self) -> Option<Symbol<'_>> { ... }
    fn section(&self) -> Option<Section<'_>> { ... }
    fn segment(&self) -> Option<Segment<'_>> { ... }
}

Provided Methods§

fn is_pc_relative(&self) -> bool

fn symbol(&self) -> Option<Symbol<'_>>

fn section(&self) -> Option<Section<'_>>

fn segment(&self) -> Option<Segment<'_>>

Trait Implementations§

§

impl Debug for &dyn RelocationBase

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§