pub trait Instance:
SealedInstance
+ PeripheralType
+ RccPeripheral {
type EventInterrupt: Interrupt;
type ErrorInterrupt: Interrupt;
}Expand description
Peripheral instance trait.
Required Associated Types§
Sourcetype EventInterrupt: Interrupt
type EventInterrupt: Interrupt
Interrupt for this peripheral.
Sourcetype ErrorInterrupt: Interrupt
type ErrorInterrupt: Interrupt
Interrupt for this peripheral.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".