pub enum ClockDivision {
Div1 = 0,
Div2 = 1,
Div3 = 2,
}Variants§
Trait Implementations§
Source§impl Clone for ClockDivision
impl Clone for ClockDivision
Source§fn clone(&self) -> ClockDivision
fn clone(&self) -> ClockDivision
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 ClockDivision
Source§impl Debug for ClockDivision
impl Debug for ClockDivision
impl Eq for ClockDivision
Source§impl PartialEq for ClockDivision
impl PartialEq for ClockDivision
Source§fn eq(&self, other: &ClockDivision) -> bool
fn eq(&self, other: &ClockDivision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClockDivision
Auto Trait Implementations§
impl Freeze for ClockDivision
impl RefUnwindSafe for ClockDivision
impl Send for ClockDivision
impl Sync for ClockDivision
impl Unpin for ClockDivision
impl UnsafeUnpin for ClockDivision
impl UnwindSafe for ClockDivision
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