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