pub enum BeepOffTime {
_1230ms,
_2580ms,
_3900ms,
_5220ms,
_6600ms,
_8050ms,
_9350ms,
_10800ms,
}Expand description
Time the beep is off
Variants§
_1230ms
1230ms
_2580ms
2580ms
_3900ms
3900ms
_5220ms
5220ms
_6600ms
6600ms
_8050ms
8050ms
_9350ms
9350ms
_10800ms
10800ms
Trait Implementations§
Source§impl Clone for BeepOffTime
impl Clone for BeepOffTime
Source§fn clone(&self) -> BeepOffTime
fn clone(&self) -> BeepOffTime
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 BeepOffTime
Source§impl Debug for BeepOffTime
impl Debug for BeepOffTime
Source§impl From<BeepOffTime> for u8
impl From<BeepOffTime> for u8
Source§fn from(time: BeepOffTime) -> Self
fn from(time: BeepOffTime) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BeepOffTime
impl PartialEq for BeepOffTime
Source§fn eq(&self, other: &BeepOffTime) -> bool
fn eq(&self, other: &BeepOffTime) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BeepOffTime
Auto Trait Implementations§
impl Freeze for BeepOffTime
impl RefUnwindSafe for BeepOffTime
impl Send for BeepOffTime
impl Sync for BeepOffTime
impl Unpin for BeepOffTime
impl UnsafeUnpin for BeepOffTime
impl UnwindSafe for BeepOffTime
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