[][src]Struct serialio::SerialIO

pub struct SerialIO<TX, RX> { /* fields omitted */ }

Methods

impl<TX, RX> SerialIO<TX, RX> where
    TX: Write<u8>,
    RX: Read<u8>, 
[src]

pub fn new(tx: TX, rx: RX) -> Self[src]

pub fn release(self) -> (TX, RX)[src]

pub fn _fmt_write(&mut self, args: Arguments) -> Result<(), Error>[src]

Trait Implementations

impl<TX, RX> Write for SerialIO<TX, RX> where
    TX: Write<u8>,
    RX: Read<u8>, 
[src]

fn write_char(&mut self, c: char) -> Result<(), Error>1.1.0[src]

Writes a [char] into this writer, returning whether the write succeeded. Read more

fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>1.0.0[src]

Glue for usage of the [write!] macro with implementors of this trait. Read more

Auto Trait Implementations

impl<TX, RX> Send for SerialIO<TX, RX> where
    RX: Send,
    TX: Send

impl<TX, RX> Sync for SerialIO<TX, RX> where
    RX: Sync,
    TX: Sync

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]