pub enum UartStopBits {
Stop1,
Stop1_5,
Stop2,
}
Expand description
Stop bits configuration for UART communication.
Variants§
Trait Implementations§
Source§impl Clone for UartStopBits
impl Clone for UartStopBits
Source§fn clone(&self) -> UartStopBits
fn clone(&self) -> UartStopBits
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UartStopBits
impl Debug for UartStopBits
Source§impl<'de> Deserialize<'de> for UartStopBits
impl<'de> Deserialize<'de> for UartStopBits
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
Auto Trait Implementations§
impl Freeze for UartStopBits
impl RefUnwindSafe for UartStopBits
impl Send for UartStopBits
impl Sync for UartStopBits
impl Unpin for UartStopBits
impl UnwindSafe for UartStopBits
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