pub trait SerialPort: Send + Read + Write {
Show 25 methods // Required methods fn name(&self) -> Option<String>; fn baud_rate(&self) -> Result<u32>; fn data_bits(&self) -> Result<DataBits>; fn flow_control(&self) -> Result<FlowControl>; fn parity(&self) -> Result<Parity>; fn stop_bits(&self) -> Result<StopBits>; fn timeout(&self) -> Duration; fn set_baud_rate(&mut self, baud_rate: u32) -> Result<()>; fn set_data_bits(&mut self, data_bits: DataBits) -> Result<()>; fn set_flow_control(&mut self, flow_control: FlowControl) -> Result<()>; fn set_parity(&mut self, parity: Parity) -> Result<()>; fn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<()>; fn set_timeout(&mut self, timeout: Duration) -> Result<()>; fn write_request_to_send(&mut self, level: bool) -> Result<()>; fn write_data_terminal_ready(&mut self, level: bool) -> Result<()>; fn read_clear_to_send(&mut self) -> Result<bool>; fn read_data_set_ready(&mut self) -> Result<bool>; fn read_ring_indicator(&mut self) -> Result<bool>; fn read_carrier_detect(&mut self) -> Result<bool>; fn bytes_to_read(&self) -> Result<u32>; fn bytes_to_write(&self) -> Result<u32>; fn clear(&self, buffer_to_clear: ClearBuffer) -> Result<()>; fn try_clone(&self) -> Result<Box<dyn SerialPort>>; fn set_break(&self) -> Result<()>; fn clear_break(&self) -> Result<()>;
}
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§

source

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.

source

fn baud_rate(&self) -> Result<u32>

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.

source

fn data_bits(&self) -> Result<DataBits>

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.

source

fn flow_control(&self) -> Result<FlowControl>

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.

source

fn parity(&self) -> Result<Parity>

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.

source

fn stop_bits(&self) -> Result<StopBits>

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.

source

fn timeout(&self) -> Duration

Returns the current timeout.

source

fn set_baud_rate(&mut self, baud_rate: u32) -> Result<()>

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.

source

fn set_data_bits(&mut self, data_bits: DataBits) -> Result<()>

Sets the character size.

source

fn set_flow_control(&mut self, flow_control: FlowControl) -> Result<()>

Sets the flow control mode.

source

fn set_parity(&mut self, parity: Parity) -> Result<()>

Sets the parity-checking mode.

source

fn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<()>

Sets the number of stop bits.

source

fn set_timeout(&mut self, timeout: Duration) -> Result<()>

Sets the timeout for future I/O operations.

source

fn write_request_to_send(&mut self, level: bool) -> Result<()>

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.
source

fn write_data_terminal_ready(&mut self, level: bool) -> Result<()>

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.
source

fn read_clear_to_send(&mut self) -> Result<bool>

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.
source

fn read_data_set_ready(&mut self) -> Result<bool>

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.
source

fn read_ring_indicator(&mut self) -> Result<bool>

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.
source

fn read_carrier_detect(&mut self) -> Result<bool>

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.
source

fn bytes_to_read(&self) -> Result<u32>

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.
source

fn bytes_to_write(&self) -> Result<u32>

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.
source

fn clear(&self, buffer_to_clear: ClearBuffer) -> Result<()>

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.
source

fn try_clone(&self) -> Result<Box<dyn SerialPort>>

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 carefull 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.

source

fn set_break(&self) -> Result<()>

Start transmitting a break

source

fn clear_break(&self) -> Result<()>

Stop transmitting a break

Trait Implementations§

source§

impl Debug for dyn SerialPort

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementations on Foreign Types§

source§

impl<T: SerialPort> SerialPort for &mut T

source§

fn name(&self) -> Option<String>

source§

fn baud_rate(&self) -> Result<u32>

source§

fn data_bits(&self) -> Result<DataBits>

source§

fn flow_control(&self) -> Result<FlowControl>

source§

fn parity(&self) -> Result<Parity>

source§

fn stop_bits(&self) -> Result<StopBits>

source§

fn timeout(&self) -> Duration

source§

fn set_baud_rate(&mut self, baud_rate: u32) -> Result<()>

source§

fn set_data_bits(&mut self, data_bits: DataBits) -> Result<()>

source§

fn set_flow_control(&mut self, flow_control: FlowControl) -> Result<()>

source§

fn set_parity(&mut self, parity: Parity) -> Result<()>

source§

fn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<()>

source§

fn set_timeout(&mut self, timeout: Duration) -> Result<()>

source§

fn write_request_to_send(&mut self, level: bool) -> Result<()>

source§

fn write_data_terminal_ready(&mut self, level: bool) -> Result<()>

source§

fn read_clear_to_send(&mut self) -> Result<bool>

source§

fn read_data_set_ready(&mut self) -> Result<bool>

source§

fn read_ring_indicator(&mut self) -> Result<bool>

source§

fn read_carrier_detect(&mut self) -> Result<bool>

source§

fn bytes_to_read(&self) -> Result<u32>

source§

fn bytes_to_write(&self) -> Result<u32>

source§

fn clear(&self, buffer_to_clear: ClearBuffer) -> Result<()>

source§

fn try_clone(&self) -> Result<Box<dyn SerialPort>>

source§

fn set_break(&self) -> Result<()>

source§

fn clear_break(&self) -> Result<()>

Implementors§