pub trait ModifyRegister {
// Required methods
fn get() -> usize;
unsafe fn set(value: usize);
}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.
Implementors§
impl ModifyRegister for ThreadRegister
Available on x86-64 only.