Enum AHBPrescaler
pub enum AHBPrescaler {
DivideBy1 = 0,
DivideBy2 = 8,
DivideBy4 = 9,
DivideBy8 = 10,
DivideBy16 = 11,
DivideBy64 = 12,
DivideBy128 = 13,
DivideBy256 = 14,
DivideBy512 = 15,
}Variants§
DivideBy1 = 0
DivideBy2 = 8
DivideBy4 = 9
DivideBy8 = 10
DivideBy16 = 11
DivideBy64 = 12
DivideBy128 = 13
DivideBy256 = 14
DivideBy512 = 15
Trait Implementations§
§impl Clone for AHBPrescaler
impl Clone for AHBPrescaler
§fn clone(&self) -> AHBPrescaler
fn clone(&self) -> AHBPrescaler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AHBPrescaler
§impl Debug for AHBPrescaler
impl Debug for AHBPrescaler
§impl PartialEq for AHBPrescaler
impl PartialEq for AHBPrescaler
impl StructuralPartialEq for AHBPrescaler
Auto Trait Implementations§
impl Freeze for AHBPrescaler
impl RefUnwindSafe for AHBPrescaler
impl Send for AHBPrescaler
impl Sync for AHBPrescaler
impl Unpin for AHBPrescaler
impl UnsafeUnpin for AHBPrescaler
impl UnwindSafe for AHBPrescaler
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