pub trait Instance:
SealedInstance
+ PeripheralType
+ 'static {
type Transceivers: TransceiverCount;
type Filters: FilterCount;
// Required method
fn instance_state() -> &'static InstanceState;
}Expand description
A DFSDM peripheral instance.
Required Associated Types§
Sourcetype Transceivers: TransceiverCount
type Transceivers: TransceiverCount
Number of transceivers on this instance.
Required Methods§
Sourcefn instance_state() -> &'static InstanceState
fn instance_state() -> &'static InstanceState
Shared instance-level state.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".