pub enum DynGclkSourceId {
Dfll,
Dpll0,
Dpll1,
Gclk1,
GclkIn,
OscUlp32k,
Xosc0,
Xosc1,
Xosc32k,
}
Expand description
Value-level enum of possible clock sources for a Gclk
The variants of this enum identify one of nine possible clock sources for
a given Gclk
.
DynGclkSourceId
is the value-level equivalent of GclkSourceId
.
Variants§
Trait Implementations§
Source§impl Clone for DynGclkSourceId
impl Clone for DynGclkSourceId
Source§fn clone(&self) -> DynGclkSourceId
fn clone(&self) -> DynGclkSourceId
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl From<DynGclkSourceId> for Srcselect
impl From<DynGclkSourceId> for Srcselect
Source§fn from(source: DynGclkSourceId) -> Self
fn from(source: DynGclkSourceId) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DynGclkSourceId
impl PartialEq for DynGclkSourceId
impl Copy for DynGclkSourceId
impl Eq for DynGclkSourceId
impl StructuralPartialEq for DynGclkSourceId
Auto Trait Implementations§
impl Freeze for DynGclkSourceId
impl RefUnwindSafe for DynGclkSourceId
impl Send for DynGclkSourceId
impl Sync for DynGclkSourceId
impl Unpin for DynGclkSourceId
impl UnwindSafe for DynGclkSourceId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more