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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".