Enum embassy_stm32::sai::MasterClockDivider
source · pub enum MasterClockDivider {
Show 17 variants
MasterClockDisabled,
Div1,
Div2,
Div4,
Div6,
Div8,
Div10,
Div12,
Div14,
Div16,
Div18,
Div20,
Div22,
Div24,
Div26,
Div28,
Div30,
}
Expand description
Master clock divider.
Variants§
MasterClockDisabled
Div1
Div2
Div4
Div6
Div8
Div10
Div12
Div14
Div16
Div18
Div20
Div22
Div24
Div26
Div28
Div30
Trait Implementations§
source§impl Clone for MasterClockDivider
impl Clone for MasterClockDivider
source§fn clone(&self) -> MasterClockDivider
fn clone(&self) -> MasterClockDivider
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 PartialEq for MasterClockDivider
impl PartialEq for MasterClockDivider
source§fn eq(&self, other: &MasterClockDivider) -> bool
fn eq(&self, other: &MasterClockDivider) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for MasterClockDivider
impl StructuralPartialEq for MasterClockDivider
Auto Trait Implementations§
impl RefUnwindSafe for MasterClockDivider
impl Send for MasterClockDivider
impl Sync for MasterClockDivider
impl Unpin for MasterClockDivider
impl UnwindSafe for MasterClockDivider
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