#[repr(u8)]pub enum FilterClksel {
FRO1MHZ = 0,
FRO12MHZ = 1,
OTHER_CLOCK = 2,
_RESERVED_3 = 3,
}Variants§
FRO1MHZ = 0
Selects the 1 MHz low-power oscillator as the filter clock.
FRO12MHZ = 1
Selects the 12 Mhz FRO as the filter clock.
OTHER_CLOCK = 2
Selects a third filter clock source, if provided.
_RESERVED_3 = 3
Implementations§
Source§impl FilterClksel
impl FilterClksel
Trait Implementations§
Source§impl Clone for FilterClksel
impl Clone for FilterClksel
Source§fn clone(&self) -> FilterClksel
fn clone(&self) -> FilterClksel
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 FilterClksel
impl Debug for FilterClksel
Source§impl From<FilterClksel> for u8
impl From<FilterClksel> for u8
Source§fn from(val: FilterClksel) -> u8
fn from(val: FilterClksel) -> u8
Converts to this type from the input type.
Source§impl From<u8> for FilterClksel
impl From<u8> for FilterClksel
Source§fn from(val: u8) -> FilterClksel
fn from(val: u8) -> FilterClksel
Converts to this type from the input type.
Source§impl Ord for FilterClksel
impl Ord for FilterClksel
Source§fn cmp(&self, other: &FilterClksel) -> Ordering
fn cmp(&self, other: &FilterClksel) -> 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 FilterClksel
impl PartialEq for FilterClksel
Source§impl PartialOrd for FilterClksel
impl PartialOrd for FilterClksel
impl Copy for FilterClksel
impl Eq for FilterClksel
impl StructuralPartialEq for FilterClksel
Auto Trait Implementations§
impl Freeze for FilterClksel
impl RefUnwindSafe for FilterClksel
impl Send for FilterClksel
impl Sync for FilterClksel
impl Unpin for FilterClksel
impl UnwindSafe for FilterClksel
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