Enum Ps
#[repr(u8)]pub enum Ps {
_000 = 0,
_001 = 1,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Prescale Factor Selection
Value on reset: 0
Variants§
_000 = 0
0: Divide by 1
_001 = 1
1: Divide by 2
_010 = 2
2: Divide by 4
_011 = 3
3: Divide by 8
_100 = 4
4: Divide by 16
_101 = 5
5: Divide by 32
_110 = 6
6: Divide by 64
_111 = 7
7: Divide by 128
Trait Implementations§
impl Copy for Ps
impl Eq for Ps
impl IsEnum for Ps
impl StructuralPartialEq for Ps
Auto Trait Implementations§
impl Freeze for Ps
impl RefUnwindSafe for Ps
impl Send for Ps
impl Sync for Ps
impl Unpin for Ps
impl UnwindSafe for Ps
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