pub trait NextChannel<C: TransceiverCount>: TransceiverMarker {
type Next: TransceiverMarker;
}Expand description
Per-instance “successor” transceiver.
C is the instance’s transceiver-capability (<T as Instance>::Transceivers),
so the modulo-N wrap depends on the instance shape, not on the marker itself.
Required Associated Types§
Sourcetype Next: TransceiverMarker
type Next: TransceiverMarker
Marker of the next transceiver, modulo the capability’s max count.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".