Struct mio_serial::SerialStream
source · [−]pub struct SerialStream { /* private fields */ }Expand description
SerialStream
Implementations
sourceimpl SerialStream
impl SerialStream
sourcepub fn open(builder: &SerialPortBuilder) -> Result<Self>
pub fn open(builder: &SerialPortBuilder) -> Result<Self>
Open a nonblocking serial port from the provided builder
Example
use mio_serial::{SerialPortBuilder, SerialStream};
use std::path::Path;
let args = mio_serial::new("/dev/ttyUSB0", 9600);
let serial = SerialStream::open(&args).unwrap();sourcepub fn pair() -> Result<(Self, Self)>
pub fn pair() -> Result<(Self, Self)>
Create a pair of pseudo serial terminals
Returns
Two connected Serial objects: (master, slave)
Errors
Attempting any IO or parameter settings on the slave tty after the master tty is closed will return errors.
Examples
use mio_serial::SerialStream;
let (master, slave) = SerialStream::pair().unwrap();sourcepub fn set_exclusive(&mut self, exclusive: bool) -> Result<()>
pub fn set_exclusive(&mut self, exclusive: bool) -> Result<()>
Sets the exclusivity of the port
If a port is exclusive, then trying to open the same device path again will fail.
See the man pages for the tiocexcl and tiocnxcl ioctl’s for more details.
Errors
Iofor any error while setting exclusivity for the port.
Trait Implementations
sourceimpl AsRawFd for SerialStream
impl AsRawFd for SerialStream
sourceimpl Debug for SerialStream
impl Debug for SerialStream
sourceimpl FromRawFd for SerialStream
impl FromRawFd for SerialStream
sourceunsafe fn from_raw_fd(fd: RawFd) -> Self
unsafe fn from_raw_fd(fd: RawFd) -> Self
Constructs a new instance of Self from the given raw file
descriptor. Read more
sourceimpl IntoRawFd for SerialStream
impl IntoRawFd for SerialStream
sourcefn into_raw_fd(self) -> RawFd
fn into_raw_fd(self) -> RawFd
Consumes this object, returning the raw underlying file descriptor. Read more
sourceimpl Read for SerialStream
impl Read for SerialStream
sourcefn read(&mut self, bytes: &mut [u8]) -> StdIoResult<usize>
fn read(&mut self, bytes: &mut [u8]) -> StdIoResult<usize>
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
1.36.0 · sourcefn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like read, except that it reads into a slice of buffers. Read more
sourcefn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector)Determines if this Reader has an efficient read_vectored
implementation. Read more
1.0.0 · sourcefn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · sourcefn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · sourcefn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill buf. Read more
sourcefn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
read_buf)Pull some bytes from this source into the specified buffer. Read more
sourcefn read_buf_exact(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
read_buf)Read the exact number of bytes required to fill buf. Read more
1.0.0 · sourcefn by_ref(&mut self) -> &mut Self
fn by_ref(&mut self) -> &mut Self
Creates a “by reference” adaptor for this instance of Read. Read more
sourceimpl<'a> Read for &'a SerialStream
impl<'a> Read for &'a SerialStream
sourcefn read(&mut self, bytes: &mut [u8]) -> StdIoResult<usize>
fn read(&mut self, bytes: &mut [u8]) -> StdIoResult<usize>
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
1.36.0 · sourcefn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
Like read, except that it reads into a slice of buffers. Read more
sourcefn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector)Determines if this Reader has an efficient read_vectored
implementation. Read more
1.0.0 · sourcefn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · sourcefn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · sourcefn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
Read the exact number of bytes required to fill buf. Read more
sourcefn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
read_buf)Pull some bytes from this source into the specified buffer. Read more
sourcefn read_buf_exact(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, buf: &mut ReadBuf<'_>) -> Result<(), Error>
read_buf)Read the exact number of bytes required to fill buf. Read more
1.0.0 · sourcefn by_ref(&mut self) -> &mut Self
fn by_ref(&mut self) -> &mut Self
Creates a “by reference” adaptor for this instance of Read. Read more
sourceimpl SerialPort for SerialStream
impl SerialPort for SerialStream
sourcefn baud_rate(&self) -> Result<u32>
fn baud_rate(&self) -> Result<u32>
Returns the current baud rate.
This function returns None if the baud rate could not be determined. This may occur if
the hardware is in an uninitialized state. Setting a baud rate with set_baud_rate()
should initialize the baud rate to a supported value.
sourcefn data_bits(&self) -> Result<DataBits>
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.
sourcefn flow_control(&self) -> Result<FlowControl>
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.
sourcefn parity(&self) -> Result<Parity>
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.
sourcefn stop_bits(&self) -> Result<StopBits>
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.
sourcefn timeout(&self) -> Duration
fn timeout(&self) -> Duration
Returns the current timeout. This parameter is const and equal to zero and implemented due to required for trait completeness.
sourcefn set_baud_rate(&mut self, baud_rate: u32) -> Result<()>
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.
sourcefn set_data_bits(&mut self, data_bits: DataBits) -> Result<()>
fn set_data_bits(&mut self, data_bits: DataBits) -> Result<()>
Sets the character size.
sourcefn set_flow_control(&mut self, flow_control: FlowControl) -> Result<()>
fn set_flow_control(&mut self, flow_control: FlowControl) -> Result<()>
Sets the flow control mode.
sourcefn set_parity(&mut self, parity: Parity) -> Result<()>
fn set_parity(&mut self, parity: Parity) -> Result<()>
Sets the parity-checking mode.
sourcefn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<()>
fn set_stop_bits(&mut self, stop_bits: StopBits) -> Result<()>
Sets the number of stop bits.
sourcefn set_timeout(&mut self, _: Duration) -> Result<()>
fn set_timeout(&mut self, _: Duration) -> Result<()>
Sets the timeout for future I/O operations. This parameter is ignored but required for trait completeness.
sourcefn write_request_to_send(&mut self, level: bool) -> Result<()>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn write_data_terminal_ready(&mut self, level: bool) -> Result<()>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn read_clear_to_send(&mut self) -> Result<bool>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn read_data_set_ready(&mut self) -> Result<bool>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn read_ring_indicator(&mut self) -> Result<bool>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn read_carrier_detect(&mut self) -> Result<bool>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn bytes_to_read(&self) -> Result<u32>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn bytes_to_write(&self) -> Result<u32>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn clear(&self, buffer_to_clear: ClearBuffer) -> Result<()>
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:
NoDeviceif the device was disconnected.Iofor any other type of I/O error.
sourcefn try_clone(&self) -> Result<Box<dyn SerialPort>>
fn try_clone(&self) -> Result<Box<dyn SerialPort>>
Cloning is not supported for SerialStream objects
This logic has never really completely worked. Cloned file descriptors in asynchronous code is a semantic minefield. Are you cloning the file descriptor? Are you cloning the event flags on the file descriptor? Both? It’s a bit of a mess even within one OS, let alone across multiple OS’s
Maybe it can be done with more work, but until a clear use-case is required (or mio/tokio
gets an equivalent of the unix AsyncFd for async file handles, see
https://github.com/tokio-rs/tokio/issues/3781 and
https://github.com/tokio-rs/tokio/pull/3760#issuecomment-839854617) I would rather not
have any code available over a kind-of-works-maybe impl. So I’ll leave this code here
for now but hard-code it disabled.
sourcefn clear_break(&self) -> Result<()>
fn clear_break(&self) -> Result<()>
Stop transmitting a break
sourceimpl Source for SerialStream
impl Source for SerialStream
sourcefn register(
&mut self,
registry: &Registry,
token: Token,
interests: Interest
) -> StdIoResult<()>
fn register(
&mut self,
registry: &Registry,
token: Token,
interests: Interest
) -> StdIoResult<()>
Register self with the given Registry instance. Read more
sourcefn reregister(
&mut self,
registry: &Registry,
token: Token,
interests: Interest
) -> StdIoResult<()>
fn reregister(
&mut self,
registry: &Registry,
token: Token,
interests: Interest
) -> StdIoResult<()>
Re-register self with the given Registry instance. Read more
sourcefn deregister(&mut self, registry: &Registry) -> StdIoResult<()>
fn deregister(&mut self, registry: &Registry) -> StdIoResult<()>
Deregister self from the given Registry instance. Read more
sourceimpl TryFrom<TTYPort> for SerialStream
impl TryFrom<TTYPort> for SerialStream
sourceimpl Write for SerialStream
impl Write for SerialStream
sourcefn write(&mut self, bytes: &[u8]) -> StdIoResult<usize>
fn write(&mut self, bytes: &[u8]) -> StdIoResult<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcefn flush(&mut self) -> StdIoResult<()>
fn flush(&mut self) -> StdIoResult<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
sourcefn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
sourceimpl<'a> Write for &'a SerialStream
impl<'a> Write for &'a SerialStream
sourcefn write(&mut self, bytes: &[u8]) -> StdIoResult<usize>
fn write(&mut self, bytes: &[u8]) -> StdIoResult<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcefn flush(&mut self) -> StdIoResult<()>
fn flush(&mut self) -> StdIoResult<()>
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
sourcefn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations
impl RefUnwindSafe for SerialStream
impl Send for SerialStream
impl Sync for SerialStream
impl Unpin for SerialStream
impl UnwindSafe for SerialStream
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more