Trait mio_serial::SerialPort
source · pub trait SerialPort: Send + Read + Write {
Show 25 methods
// Required methods
fn name(&self) -> Option<String>;
fn baud_rate(&self) -> Result<u32, Error>;
fn data_bits(&self) -> Result<DataBits, Error>;
fn flow_control(&self) -> Result<FlowControl, Error>;
fn parity(&self) -> Result<Parity, Error>;
fn stop_bits(&self) -> Result<StopBits, Error>;
fn timeout(&self) -> Duration;
fn set_baud_rate(&mut self, baud_rate: u32) -> Result<(), Error>;
fn set_data_bits(&mut self, data_bits: DataBits) -> Result<(), Error>;
fn set_flow_control(
&mut self,
flow_control: FlowControl
) -> Result<(), Error>;
fn set_parity(&mut self, parity: Parity) -> Result<(), Error>;
fn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<(), Error>;
fn set_timeout(&mut self, timeout: Duration) -> Result<(), Error>;
fn write_request_to_send(&mut self, level: bool) -> Result<(), Error>;
fn write_data_terminal_ready(&mut self, level: bool) -> Result<(), Error>;
fn read_clear_to_send(&mut self) -> Result<bool, Error>;
fn read_data_set_ready(&mut self) -> Result<bool, Error>;
fn read_ring_indicator(&mut self) -> Result<bool, Error>;
fn read_carrier_detect(&mut self) -> Result<bool, Error>;
fn bytes_to_read(&self) -> Result<u32, Error>;
fn bytes_to_write(&self) -> Result<u32, Error>;
fn clear(&self, buffer_to_clear: ClearBuffer) -> Result<(), Error>;
fn try_clone(&self) -> Result<Box<dyn SerialPort>, Error>;
fn set_break(&self) -> Result<(), Error>;
fn clear_break(&self) -> Result<(), Error>;
}
Expand description
A trait for serial port devices
This trait is all that’s necessary to implement a new serial port driver for a new platform.
Required Methods§
sourcefn name(&self) -> Option<String>
fn name(&self) -> Option<String>
Returns the name of this port if it exists.
This name may not be the canonical device name and instead be shorthand. Additionally it may not exist for virtual ports.
sourcefn baud_rate(&self) -> Result<u32, Error>
fn baud_rate(&self) -> Result<u32, Error>
Returns the current baud rate.
This may return a value different from the last specified baud rate depending on the platform as some will return the actual device baud rate rather than the last specified baud rate.
sourcefn data_bits(&self) -> Result<DataBits, Error>
fn data_bits(&self) -> Result<DataBits, Error>
Returns the character size.
This function returns None
if the character size could not be determined. This may occur
if the hardware is in an uninitialized state or is using a non-standard character size.
Setting a baud rate with set_char_size()
should initialize the character size to a
supported value.
sourcefn flow_control(&self) -> Result<FlowControl, Error>
fn flow_control(&self) -> Result<FlowControl, Error>
Returns the flow control mode.
This function returns None
if the flow control mode could not be determined. This may
occur if the hardware is in an uninitialized state or is using an unsupported flow control
mode. Setting a flow control mode with set_flow_control()
should initialize the flow
control mode to a supported value.
sourcefn parity(&self) -> Result<Parity, Error>
fn parity(&self) -> Result<Parity, Error>
Returns the parity-checking mode.
This function returns None
if the parity mode could not be determined. This may occur if
the hardware is in an uninitialized state or is using a non-standard parity mode. Setting
a parity mode with set_parity()
should initialize the parity mode to a supported value.
sourcefn stop_bits(&self) -> Result<StopBits, Error>
fn stop_bits(&self) -> Result<StopBits, Error>
Returns the number of stop bits.
This function returns None
if the number of stop bits could not be determined. This may
occur if the hardware is in an uninitialized state or is using an unsupported stop bit
configuration. Setting the number of stop bits with set_stop-bits()
should initialize the
stop bits to a supported value.
sourcefn set_baud_rate(&mut self, baud_rate: u32) -> Result<(), Error>
fn set_baud_rate(&mut self, baud_rate: u32) -> Result<(), Error>
Sets the baud rate.
§Errors
If the implementation does not support the requested baud rate, this function may return an
InvalidInput
error. Even if the baud rate is accepted by set_baud_rate()
, it may not be
supported by the underlying hardware.
sourcefn set_flow_control(&mut self, flow_control: FlowControl) -> Result<(), Error>
fn set_flow_control(&mut self, flow_control: FlowControl) -> Result<(), Error>
Sets the flow control mode.
sourcefn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<(), Error>
fn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<(), Error>
Sets the number of stop bits.
sourcefn set_timeout(&mut self, timeout: Duration) -> Result<(), Error>
fn set_timeout(&mut self, timeout: Duration) -> Result<(), Error>
Sets the timeout for future I/O operations.
sourcefn write_request_to_send(&mut self, level: bool) -> Result<(), Error>
fn write_request_to_send(&mut self, level: bool) -> Result<(), Error>
Sets the state of the RTS (Request To Send) control signal.
Setting a value of true
asserts the RTS control signal. false
clears the signal.
§Errors
This function returns an error if the RTS control signal could not be set to the desired state on the underlying hardware:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn write_data_terminal_ready(&mut self, level: bool) -> Result<(), Error>
fn write_data_terminal_ready(&mut self, level: bool) -> Result<(), Error>
Writes to the Data Terminal Ready pin
Setting a value of true
asserts the DTR control signal. false
clears the signal.
§Errors
This function returns an error if the DTR control signal could not be set to the desired state on the underlying hardware:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn read_clear_to_send(&mut self) -> Result<bool, Error>
fn read_clear_to_send(&mut self) -> Result<bool, Error>
Reads the state of the CTS (Clear To Send) control signal.
This function returns a boolean that indicates whether the CTS control signal is asserted.
§Errors
This function returns an error if the state of the CTS control signal could not be read from the underlying hardware:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn read_data_set_ready(&mut self) -> Result<bool, Error>
fn read_data_set_ready(&mut self) -> Result<bool, Error>
Reads the state of the Data Set Ready control signal.
This function returns a boolean that indicates whether the DSR control signal is asserted.
§Errors
This function returns an error if the state of the DSR control signal could not be read from the underlying hardware:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn read_ring_indicator(&mut self) -> Result<bool, Error>
fn read_ring_indicator(&mut self) -> Result<bool, Error>
Reads the state of the Ring Indicator control signal.
This function returns a boolean that indicates whether the RI control signal is asserted.
§Errors
This function returns an error if the state of the RI control signal could not be read from the underlying hardware:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn read_carrier_detect(&mut self) -> Result<bool, Error>
fn read_carrier_detect(&mut self) -> Result<bool, Error>
Reads the state of the Carrier Detect control signal.
This function returns a boolean that indicates whether the CD control signal is asserted.
§Errors
This function returns an error if the state of the CD control signal could not be read from the underlying hardware:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn bytes_to_read(&self) -> Result<u32, Error>
fn bytes_to_read(&self) -> Result<u32, Error>
Gets the number of bytes available to be read from the input buffer.
§Errors
This function may return the following errors:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn bytes_to_write(&self) -> Result<u32, Error>
fn bytes_to_write(&self) -> Result<u32, Error>
Get the number of bytes written to the output buffer, awaiting transmission.
§Errors
This function may return the following errors:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn clear(&self, buffer_to_clear: ClearBuffer) -> Result<(), Error>
fn clear(&self, buffer_to_clear: ClearBuffer) -> Result<(), Error>
Discards all bytes from the serial driver’s input buffer and/or output buffer.
§Errors
This function may return the following errors:
NoDevice
if the device was disconnected.Io
for any other type of I/O error.
sourcefn try_clone(&self) -> Result<Box<dyn SerialPort>, Error>
fn try_clone(&self) -> Result<Box<dyn SerialPort>, Error>
Attempts to clone the SerialPort
. This allow you to write and read simultaneously from the
same serial connection. Please note that if you want a real asynchronous serial port you
should look at mio-serial or
tokio-serial.
Also, you must be very careful when changing the settings of a cloned SerialPort
: since
the settings are cached on a per object basis, trying to modify them from two different
objects can cause some nasty behavior.
§Errors
This function returns an error if the serial port couldn’t be cloned.
sourcefn clear_break(&self) -> Result<(), Error>
fn clear_break(&self) -> Result<(), Error>
Stop transmitting a break