pub trait RelocationHandlerExt: RelocationHandler {
    // Provided method
    fn default_apply_relocation(
        &self,
        bv: &BinaryView,
        arch: &CoreArchitecture,
        reloc: &Relocation,
        dest: &mut [u8]
    ) -> bool { ... }
}

Provided Methods§

source

fn default_apply_relocation( &self, bv: &BinaryView, arch: &CoreArchitecture, reloc: &Relocation, dest: &mut [u8] ) -> bool

Object Safety§

This trait is not object safe.

Implementors§