Trait MappableArea
pub trait MappableArea: Clone + Debug {
// Required method
fn can_map(&self, addr: Addr) -> bool;
}
Expand description
The memory addresses that can be mapped by an oracle.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.