pub enum Speed {
Variant1200,
Variant2400,
Variant4800,
Variant9600,
Variant19200,
Variant38400,
Variant57600,
Variant115200,
Null,
}Expand description
1200- 1200 bps *2400- 2400 bps *4800- 4800 bps *9600- 9600 bps *19200- 19.2 kbps *38400- 38.4 kbps *57600- 57.6 kbps *115200- 115.2 kbps
Variants§
Variant1200
Variant2400
Variant4800
Variant9600
Variant19200
Variant38400
Variant57600
Variant115200
Null
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Speed
impl<'de> Deserialize<'de> for Speed
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Speed
impl Ord for Speed
Source§impl PartialOrd for Speed
impl PartialOrd for Speed
impl Copy for Speed
impl Eq for Speed
impl StructuralPartialEq for Speed
Auto Trait Implementations§
impl Freeze for Speed
impl RefUnwindSafe for Speed
impl Send for Speed
impl Sync for Speed
impl Unpin for Speed
impl UnwindSafe for Speed
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