Skip to main content

LoadImage

Trait LoadImage 

Source
pub trait LoadImage {
    // Required method
    fn load_fill(&mut self, ptr: &mut [u8], addr: &Address);

    // Provided method
    fn adjust_vma(&mut self, _adjust: isize) { ... }
}

Required Methods§

Source

fn load_fill(&mut self, ptr: &mut [u8], addr: &Address)

Provided Methods§

Source

fn adjust_vma(&mut self, _adjust: isize)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§