pub trait PhysMemReader {
// Required method
fn phys_to_slice(&self, phys: usize, length: usize) -> Result<&[u8], Status>;
}Required Methods§
fn phys_to_slice(&self, phys: usize, length: usize) -> Result<&[u8], Status>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".