pub struct Clock {
pub hour: Hand<Hour>,
pub minute: Hand<Minute>,
pub format: Format,
}
Expand description
A Clock which can produce a morse-like sequence of dits and dashes
Fields§
§hour: Hand<Hour>
§minute: Hand<Minute>
§format: Format
Implementations§
Trait Implementations§
Source§impl IntoIterator for Clock
impl IntoIterator for Clock
impl Copy for Clock
impl Eq for Clock
impl StructuralPartialEq for Clock
Auto Trait Implementations§
impl Freeze for Clock
impl RefUnwindSafe for Clock
impl Send for Clock
impl Sync for Clock
impl Unpin for Clock
impl UnwindSafe for Clock
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