pub trait GclkIo: PinId {
    type GclkId: GclkId;
}
Expand description

Trait mapping each PinId to its corresponding GclkId when used as a Gclk input or output

If a given PinId can be used as a Gclk input or output, it can only be used with one specific GclkId. This trait provides a mapping from such a PinId to its corresponding GclkId.

Required Associated Types

Corresponding GclkId for this PinId

Implementors