pub trait Region {
    // Required method
    fn contains(&self, address: u32) -> bool;
}
Expand description

A region denotes a contiguous piece of memory between two addresses.

Required Methods§

source

fn contains(&self, address: u32) -> bool

Check if address is contained in the region of Self

Implementors§