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§
Object Safety§
This trait is not object safe.