#[repr(C)]pub enum Baudrate {
_300 = 0,
_600 = 1,
_1200 = 2,
_2400 = 3,
_4800 = 4,
_9600 = 5,
}Expand description
Baudrate to use for the communication - valid values 300, 600, 1200, 2400, 4800, 9600
Enumeration of values.
Since this enum’s variants do not hold data, we can easily define them them as #[repr(C)]
which helps with FFI.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Baudrate
impl<'de> Deserialize<'de> for Baudrate
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 Baudrate
impl Ord for Baudrate
Source§impl PartialOrd for Baudrate
impl PartialOrd for Baudrate
impl Copy for Baudrate
impl Eq for Baudrate
impl StructuralPartialEq for Baudrate
Auto Trait Implementations§
impl Freeze for Baudrate
impl RefUnwindSafe for Baudrate
impl Send for Baudrate
impl Sync for Baudrate
impl Unpin for Baudrate
impl UnwindSafe for Baudrate
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.