pub trait InIoSet<I>where
    Self: IsPad,
    I: IoSet,
{ }
Expand description

Type class for SERCOM pads in a given IoSet

This trait is used to label each Pin implementing IsPad with its corresponding IoSet(s). Downstream types can use this trait as a type class to restrict Pins to a given IoSet. See the type class documentation for more details on the pattern.

Implementors