pub enum ClockAuxiliarySource {
GpioOut(GpioAuxiliaryClockSource),
Reference(ReferenceAuxiliaryClockSource),
System(SystemAuxiliaryClockSource),
Peripheral(PeripheralAuxiliaryClockSource),
Usb(UsbAuxiliaryClockSource),
Adc(AdcAuxiliaryClockSource),
Rtc(RtcAuxiliaryClockSource),
}
Variants§
GpioOut(GpioAuxiliaryClockSource)
Reference(ReferenceAuxiliaryClockSource)
System(SystemAuxiliaryClockSource)
Peripheral(PeripheralAuxiliaryClockSource)
Usb(UsbAuxiliaryClockSource)
Adc(AdcAuxiliaryClockSource)
Rtc(RtcAuxiliaryClockSource)
Trait Implementations§
Source§impl Clone for ClockAuxiliarySource
impl Clone for ClockAuxiliarySource
Source§fn clone(&self) -> ClockAuxiliarySource
fn clone(&self) -> ClockAuxiliarySource
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 Debug for ClockAuxiliarySource
impl Debug for ClockAuxiliarySource
Source§impl PartialEq for ClockAuxiliarySource
impl PartialEq for ClockAuxiliarySource
impl Copy for ClockAuxiliarySource
impl StructuralPartialEq for ClockAuxiliarySource
Auto Trait Implementations§
impl Freeze for ClockAuxiliarySource
impl RefUnwindSafe for ClockAuxiliarySource
impl Send for ClockAuxiliarySource
impl Sync for ClockAuxiliarySource
impl Unpin for ClockAuxiliarySource
impl UnwindSafe for ClockAuxiliarySource
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