pub trait ClkSrc: Sealed {
    fn freq(&self) -> Option<Hertz>;
}
Expand description

Types of clocks that have a frequency

Required Methods§

Returns the frequency of the clock, if the clock exists, else None.

Implementors§