Struct hostlink::device::SerialPortBuilder
pub struct SerialPortBuilder { /* private fields */ }
Expand description
A struct containing all serial port settings
Implementations§
§impl SerialPortBuilder
impl SerialPortBuilder
pub fn path<'a>(self, path: impl Into<Cow<'a, str>>) -> SerialPortBuilder
pub fn path<'a>(self, path: impl Into<Cow<'a, str>>) -> SerialPortBuilder
Set the path to the serial port
pub fn baud_rate(self, baud_rate: u32) -> SerialPortBuilder
pub fn baud_rate(self, baud_rate: u32) -> SerialPortBuilder
Set the baud rate in symbols-per-second
pub fn data_bits(self, data_bits: DataBits) -> SerialPortBuilder
pub fn data_bits(self, data_bits: DataBits) -> SerialPortBuilder
Set the number of bits used to represent a character sent on the line
pub fn flow_control(self, flow_control: FlowControl) -> SerialPortBuilder
pub fn flow_control(self, flow_control: FlowControl) -> SerialPortBuilder
Set the type of signalling to use for controlling data transfer
pub fn parity(self, parity: Parity) -> SerialPortBuilder
pub fn parity(self, parity: Parity) -> SerialPortBuilder
Set the type of parity to use for error checking
pub fn stop_bits(self, stop_bits: StopBits) -> SerialPortBuilder
pub fn stop_bits(self, stop_bits: StopBits) -> SerialPortBuilder
Set the number of bits to use to signal the end of a character
pub fn timeout(self, timeout: Duration) -> SerialPortBuilder
pub fn timeout(self, timeout: Duration) -> SerialPortBuilder
Set the amount of time to wait to receive data before timing out
pub fn open(self) -> Result<Box<dyn SerialPort>, Error>
pub fn open(self) -> Result<Box<dyn SerialPort>, Error>
Open a cross-platform interface to the port with the specified settings
pub fn open_native(self) -> Result<TTYPort, Error>
pub fn open_native(self) -> Result<TTYPort, Error>
Open a platform-specific interface to the port with the specified settings
Trait Implementations§
§impl Clone for SerialPortBuilder
impl Clone for SerialPortBuilder
§fn clone(&self) -> SerialPortBuilder
fn clone(&self) -> SerialPortBuilder
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 more§impl Debug for SerialPortBuilder
impl Debug for SerialPortBuilder
§impl PartialEq for SerialPortBuilder
impl PartialEq for SerialPortBuilder
§fn eq(&self, other: &SerialPortBuilder) -> bool
fn eq(&self, other: &SerialPortBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SerialPortBuilder
impl StructuralPartialEq for SerialPortBuilder
Auto Trait Implementations§
impl Freeze for SerialPortBuilder
impl RefUnwindSafe for SerialPortBuilder
impl Send for SerialPortBuilder
impl Sync for SerialPortBuilder
impl Unpin for SerialPortBuilder
impl UnwindSafe for SerialPortBuilder
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