[][src]Struct mio_tcp_loop::TcpStreamThread

pub struct TcpStreamThread {
    pub stream_thread: Option<JoinHandle<()>>,
    pub task_tx: Sender<Task>,
    pub reader_rx: Receiver<Vec<u8>>,
    pub readable_registration: Registration,
    pub reader_events: Events,
    // some fields omitted
}

Fields

stream_thread: Option<JoinHandle<()>>task_tx: Sender<Task>reader_rx: Receiver<Vec<u8>>readable_registration: Registrationreader_events: Events

Implementations

impl TcpStreamThread[src]

pub fn new(tcp_stream: TcpStream) -> Result<Self, Error>[src]

pub fn recv(&mut self, size: usize) -> Result<Vec<u8>, Error>[src]

pub fn send(&mut self, data: Vec<u8>) -> Result<(), SendError<Task>>[src]

pub fn close(&mut self)[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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