pub struct SerialConfig { /* private fields */ }Expand description
Implementations§
Source§impl SerialConfig
impl SerialConfig
Sourcepub fn new(port_name: String, baud_rate: u32) -> SerialConfig
pub fn new(port_name: String, baud_rate: u32) -> SerialConfig
Creates a serial connection address with port name and baud rate.
Sourcepub fn with_read_buffer_capacity(self, capacity: usize) -> SerialConfig
pub fn with_read_buffer_capacity(self, capacity: usize) -> SerialConfig
Updates the read buffer capacity.
Sourcepub fn buffer_capacity(&self) -> usize
pub fn buffer_capacity(&self) -> usize
Returns the configured read buffer capacity.
Trait Implementations§
Source§impl AsyncConnectable for SerialConfig
impl AsyncConnectable for SerialConfig
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 Connectable for SerialConfig
impl Connectable for SerialConfig
Source§impl Debug for SerialConfig
impl Debug for SerialConfig
Source§impl Display for SerialConfig
impl Display for SerialConfig
Source§impl From<SerialConfig> for ConnectionAddress
Available on crate feature direct-serial only.
impl From<SerialConfig> for ConnectionAddress
Available on crate feature
direct-serial only.Source§fn from(value: SerialConfig) -> ConnectionAddress
fn from(value: SerialConfig) -> ConnectionAddress
Converts to this type from the input type.
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