pub trait MemoryContention: Copy + Debug {
// Required method
fn is_contended_address(self, address: u16) -> bool;
}Expand description
A trait used by VFrameTsCounter for checking if an address is a contended one.
Required Methods§
fn is_contended_address(self, address: u16) -> bool
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.