pub trait RegionedAddress<A> {
// Required methods
fn region(&self) -> u32;
fn absolute_address(&self) -> A;
}Required Methods§
fn region(&self) -> u32
fn absolute_address(&self) -> A
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".