atsamd_hal::clock::v2::gclk

Trait Gclk0Io

Source
pub trait Gclk0Io
where Self: Sized + GclkIo<GclkId = Gclk0Id> + GclkSourceId<Resource = Pin<Self, AlternateM>>,
{ }
Expand description

Set of PinIds whose implementations of GclkIo map to Gclk0Id

This is effectively a trait alias for PinIds that implement GclkIo with a GclkId associated type of Gclk0Id, i.e. GclkIo<GclkId = Gclk0Id>. The trait is useful to simply some function signatures and to help type inference in a few cases.

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<I: GclkIo<GclkId = Gclk0Id>> Gclk0Io for I