pub trait CoreInstance:
SealedInstance
+ CenterAligned
+ 'static {
type UpdateInterrupt: Interrupt;
type Word: Word + TryInto<u16, Error: Debuggable> + From<u16> + TryFrom<u32, Error: Debuggable> + Into<u32> + TryFrom<u64, Error: Debuggable>;
// Required method
fn regs() -> *mut ();
}Expand description
Core timer instance.
Required Associated Types§
Sourcetype UpdateInterrupt: Interrupt
type UpdateInterrupt: Interrupt
Update Interrupt for this timer.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".