pub trait CoreInstance: SealedInstance + 'static {
type UpdateInterrupt: Interrupt;
const BITS: TimerBits;
// Required method
fn regs() -> *mut ();
}
Expand description
Core timer instance.
Required Associated Constants§
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", so this trait is not object safe.