pub trait ReadHandle: IoHandle {
// Required method
unsafe fn read_raw(&self) -> Self::Base;
}Expand description
Represents an abstracted means of register reads.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".