pub trait ChannelCfg<'d, T: Instance, M: TransceiverMarker> {
type Presence: PinSet;
// Required method
fn into_parts(
self,
) -> (<Self::Presence as PinSet>::Datin<'d>, <Self::Presence as PinSet>::Ckin<'d>);
}Expand description
Accepted by one configure_pins slot. Presence is the type-level pin
state that flows into the split.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".