atsamd_hal::clock::v2::xosc32k

Trait Mode

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

Type-level enum for the XOSC32K operation mode

The XOSC32K clock can be sourced from either an external clock or a crystal 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§

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