atsamd_hal::clock::v2::xosc

Trait Mode

Source
pub trait Mode: Sealed {
    const DYN: DynMode;
}
Expand description

Type-level enum for the Xosc operating mode

An Xosc can be sourced from either an external clock or a cyrstal oscillator. This type-level enum provides two type-level variants, ClockMode and CrystalMode, representing these operating modes.

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

Required Associated Constants§

Source

const DYN: DynMode

Corresponding variant of DynMode

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 Mode for ClockMode

Source§

const DYN: DynMode = DynMode::ClockMode

Source§

impl Mode for CrystalMode

Source§

const DYN: DynMode = DynMode::CrystalMode