atsamd_hal::clock::v2::dpll

Trait DpllId

Source
pub trait DpllId: Sealed + PclkId {
    const DYN: DynDpllId;
    const NUM: usize;
}
Expand description

Type-level enum identifying one of two possible Dplls

The types implementing this trait, i.e. Dpll0Id and Dpll1Id, are type-level variants of DpllId, and they identify one of the two possible digital phase-locked loops.

DpllId is the type-level equivalent of DynDpllId. See the documentation on type-level programming and specifically type-level enums for more details.

Required Associated Constants§

Source

const DYN: DynDpllId

Corresponding variant of DynDpllId

Source

const NUM: usize

Corresponding numeric index

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 DpllId for Dpll0Id

Source§

const DYN: DynDpllId = DynDpllId::Dpll0

Source§

const NUM: usize = 0usize

Source§

impl DpllId for Dpll1Id

Source§

const DYN: DynDpllId = DynDpllId::Dpll1

Source§

const NUM: usize = 1usize