atsamd_hal::sercom::uart

Trait ValidPads

Source
pub trait ValidPads: PadSet + RxpoTxpo {
    type Capability: Capability;
}
Expand description

Marker trait for valid sets of Pads

This trait labels sets of Pads that satisfy the RxpoTxpo trait. It guarantees to the Config struct that this set of Pads can be configured through those traits.

Required Associated Types§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<S, I, RX, RTS> ValidPads for Pads<S, I, RX, NoneT, RTS, NoneT>
where S: Sercom, I: IoSet, RX: SomePad, RTS: OptionalPad, Self: PadSet + RxpoTxpo,

Source§

impl<S, I, RX, TX, RTS, CTS> ValidPads for Pads<S, I, RX, TX, RTS, CTS>
where S: Sercom, I: IoSet, RX: SomePad, TX: SomePad, RTS: OptionalPad, CTS: OptionalPad, Self: PadSet + RxpoTxpo,

Source§

impl<S, I, TX, CTS> ValidPads for Pads<S, I, NoneT, TX, NoneT, CTS>
where S: Sercom, I: IoSet, TX: SomePad, CTS: OptionalPad, Self: PadSet + RxpoTxpo,