Trait ferrous_serialport::SerialPort[][src]

pub trait SerialPort: Send + Read + Write {
Show 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<()>;
}

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

fn name(&self) -> Option<String>[src]

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.

fn baud_rate(&self) -> Result<u32>[src]

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.

fn data_bits(&self) -> Result<DataBits>[src]

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.

fn flow_control(&self) -> Result<FlowControl>[src]

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.

fn parity(&self) -> Result<Parity>[src]

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.

fn stop_bits(&self) -> Result<StopBits>[src]

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.

fn timeout(&self) -> Duration[src]

Returns the current timeout.

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

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.

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

Sets the character size.

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

Sets the flow control mode.

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

Sets the parity-checking mode.

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

Sets the number of stop bits.

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

Sets the timeout for future I/O operations.

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

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.

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

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.

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

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.

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

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.

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

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.

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

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.

fn bytes_to_read(&self) -> Result<u32>[src]

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.

fn bytes_to_write(&self) -> Result<u32>[src]

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.

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

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.

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

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.

fn set_break(&self) -> Result<()>[src]

Start transmitting a break

fn clear_break(&self) -> Result<()>[src]

Stop transmitting a break

Loading content...

Implementors

impl SerialPort for TTYPort[src]

fn baud_rate(&self) -> Result<u32>[src]

Returns the port’s baud rate

On some platforms this will be the actual device baud rate, which may differ from the desired baud rate.

Loading content...