pub enum RtcCalibration {
Fast(u8),
Slow(u8),
}
Variants§
Fast(u8)
Positive correction causing prescaler to count slower (i.e. the clock source is fast.)
Slow(u8)
Negative correction causing prescaler to count faster (i.e. the clock source is slow.)
Trait Implementations§
source§impl Clone for RtcCalibration
impl Clone for RtcCalibration
source§fn clone(&self) -> RtcCalibration
fn clone(&self) -> RtcCalibration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for RtcCalibration
Auto Trait Implementations§
impl Freeze for RtcCalibration
impl RefUnwindSafe for RtcCalibration
impl Send for RtcCalibration
impl Sync for RtcCalibration
impl Unpin for RtcCalibration
impl UnwindSafe for RtcCalibration
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