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