#[repr(u8)]pub enum SystickfclkselSel {
SYSTICK_DIV_CLK = 0,
LPOSC = 1,
RTC_32KHZ = 2,
SFRO_CLK = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
NONE = 7,
}Variants§
SYSTICK_DIV_CLK = 0
Systick Divider Output Clock.
LPOSC = 1
Low Power Oscillator Clock (LPOSC).
RTC_32KHZ = 2
32KHz RTC Clock.
SFRO_CLK = 3
SFRO Clock.
_RESERVED_4 = 4
_RESERVED_5 = 5
_RESERVED_6 = 6
NONE = 7
None, this may be selected in order to reduce power when no output is needed.
Implementations§
Trait Implementations§
Source§impl Clone for SystickfclkselSel
impl Clone for SystickfclkselSel
Source§fn clone(&self) -> SystickfclkselSel
fn clone(&self) -> SystickfclkselSel
Returns a duplicate 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 SystickfclkselSel
impl Debug for SystickfclkselSel
Source§impl From<SystickfclkselSel> for u8
impl From<SystickfclkselSel> for u8
Source§fn from(val: SystickfclkselSel) -> u8
fn from(val: SystickfclkselSel) -> u8
Converts to this type from the input type.
Source§impl From<u8> for SystickfclkselSel
impl From<u8> for SystickfclkselSel
Source§fn from(val: u8) -> SystickfclkselSel
fn from(val: u8) -> SystickfclkselSel
Converts to this type from the input type.
Source§impl Ord for SystickfclkselSel
impl Ord for SystickfclkselSel
Source§fn cmp(&self, other: &SystickfclkselSel) -> Ordering
fn cmp(&self, other: &SystickfclkselSel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SystickfclkselSel
impl PartialEq for SystickfclkselSel
Source§impl PartialOrd for SystickfclkselSel
impl PartialOrd for SystickfclkselSel
impl Copy for SystickfclkselSel
impl Eq for SystickfclkselSel
impl StructuralPartialEq for SystickfclkselSel
Auto Trait Implementations§
impl Freeze for SystickfclkselSel
impl RefUnwindSafe for SystickfclkselSel
impl Send for SystickfclkselSel
impl Sync for SystickfclkselSel
impl Unpin for SystickfclkselSel
impl UnwindSafe for SystickfclkselSel
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