pub struct SerialConfig {
pub baud_rate: u32,
pub parity: Parity,
pub data_bits: DataBits,
pub stop_bits: StopBits,
}
Expand description
Serial parameters including baudrate, parity check mode, data bits and stop bits.
Fields§
§baud_rate: u32
§parity: Parity
§data_bits: DataBits
§stop_bits: StopBits
Trait Implementations§
Source§impl Clone for SerialConfig
impl Clone for SerialConfig
Source§fn clone(&self) -> SerialConfig
fn clone(&self) -> SerialConfig
Returns a duplicate 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 SerialConfig
impl Debug for SerialConfig
Source§impl Default for SerialConfig
impl Default for SerialConfig
Source§impl Display for SerialConfig
impl Display for SerialConfig
Source§impl FromStr for SerialConfig
impl FromStr for SerialConfig
Source§impl PartialEq for SerialConfig
impl PartialEq for SerialConfig
impl Copy for SerialConfig
impl Eq for SerialConfig
impl StructuralPartialEq for SerialConfig
Auto Trait Implementations§
impl Freeze for SerialConfig
impl RefUnwindSafe for SerialConfig
impl Send for SerialConfig
impl Sync for SerialConfig
impl Unpin for SerialConfig
impl UnwindSafe for SerialConfig
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