pub trait NextChannelForInstance<T: Instance>: TransceiverMarker {
type Next: TransceiverMarker;
}Expand description
Links a transceiver marker to the next channel’s marker (modulo the instance channel count).
Required Associated Types§
Sourcetype Next: TransceiverMarker
type Next: TransceiverMarker
Type representing the next TransceiverMarker in the sequence
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".