[][src]Struct gd32vf103xx_hal::rcu::UnconfiguredRcu

pub struct UnconfiguredRcu { /* fields omitted */ }

Implementations

impl UnconfiguredRcu[src]

pub fn ext_hf_clock(self, freq: impl Into<Hertz>) -> Self[src]

Uses an external oscillator instead of IRC8M (internal RC oscillator) as the high-speed clock source. Will result in a hang if an external oscillator is not connected or it fails to start.

pub fn sysclk(self, freq: impl Into<Hertz>) -> Self[src]

Sets the desired frequency for the SYSCLK clock

pub fn freeze(self) -> Rcu[src]

Freezes clock configuration, making it effective

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.