Enum stm32_metapac::iwdg::vals::Pr
#[repr(u8)]pub enum Pr {
DIVIDEBY4 = 0,
DIVIDEBY8 = 1,
DIVIDEBY16 = 2,
DIVIDEBY32 = 3,
DIVIDEBY64 = 4,
DIVIDEBY128 = 5,
DIVIDEBY256 = 6,
DIVIDEBY256BIS = 7,
}
Variants§
DIVIDEBY4 = 0
Divider /4
DIVIDEBY8 = 1
Divider /8
DIVIDEBY16 = 2
Divider /16
DIVIDEBY32 = 3
Divider /32
DIVIDEBY64 = 4
Divider /64
DIVIDEBY128 = 5
Divider /128
DIVIDEBY256 = 6
Divider /256
DIVIDEBY256BIS = 7
Divider /256
Implementations§
Trait Implementations§
§impl Ord for Pr
impl Ord for Pr
§impl PartialOrd for Pr
impl PartialOrd for Pr
§fn partial_cmp(&self, other: &Pr) -> Option<Ordering>
fn partial_cmp(&self, other: &Pr) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Pr
impl Eq for Pr
impl StructuralPartialEq for Pr
Auto Trait Implementations§
impl Freeze for Pr
impl RefUnwindSafe for Pr
impl Send for Pr
impl Sync for Pr
impl Unpin for Pr
impl UnwindSafe for Pr
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