pub trait RegFile:
Debug
+ Sized
+ Copy
+ Clone
+ Send
+ Sync
+ 'static {
type Int: IntRegType;
type Float: FloatRegType;
// Provided method
fn int_reg_count() -> u32 { ... }
}Required Associated Types§
type Int: IntRegType
type Float: FloatRegType
Provided Methods§
fn int_reg_count() -> u32
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.