pub enum SDCLKFSR {
_1,
_10,
_100,
_1000,
_10000,
_100000,
_1000000,
_10000000,
_Reserved(u8),
}Expand description
Possible values of the field SDCLKFS
Variants§
_1
Base clock divided by 2.
_10
Base clock divided by 4.
_100
Base clock divided by 8.
_1000
Base clock divided by 16.
_10000
Base clock divided by 32.
_100000
Base clock divided by 64.
_1000000
Base clock divided by 128.
_10000000
Base clock divided by 256.
_Reserved(u8)
Reserved
Implementations§
Source§impl SDCLKFSR
impl SDCLKFSR
Sourcepub fn is_1000000(&self) -> bool
pub fn is_1000000(&self) -> bool
Checks if the value of the field is _1000000
Sourcepub fn is_10000000(&self) -> bool
pub fn is_10000000(&self) -> bool
Checks if the value of the field is _10000000
Trait Implementations§
impl Copy for SDCLKFSR
impl StructuralPartialEq for SDCLKFSR
Auto Trait Implementations§
impl Freeze for SDCLKFSR
impl RefUnwindSafe for SDCLKFSR
impl Send for SDCLKFSR
impl Sync for SDCLKFSR
impl Unpin for SDCLKFSR
impl UnwindSafe for SDCLKFSR
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