Struct mioco::MioAdapter [] [src]

pub struct MioAdapter<MT>(_);

Adapt raw mio type to mioco Evented requirements.

See source of src/tcp.rs for example of usage.

Methods

impl<MT> MioAdapter<MT> where
    MT: Evented + 'static, 
[src]

Create MioAdapter from raw mio type.

impl<MT> MioAdapter<MT> where
    MT: Evented + TryRead + 'static, 
[src]

Try reading data into a buffer.

This will not block.

impl<MT> MioAdapter<MT> where
    MT: Evented + 'static + TryWrite
[src]

Try writing a data from the buffer.

This will not block.

impl<MT, O> MioAdapter<MT> where
    MT: Evented + 'static + TryAccept<Output = O>,
    O: Evented + 'static, 
[src]

Attempt to accept a pending connection.

This will not block.

impl<MT, O> MioAdapter<MT> where
    MT: Evented + 'static + TryAccept<Output = O>,
    O: Evented + 'static, 
[src]

Block on accepting a connection.

Trait Implementations

impl<T> Send for MioAdapter<T> where
    T: Evented + Send
[src]

impl<MT> EventedImpl for MioAdapter<MT> where
    MT: Evented + 'static, 
[src]

Raw IO type wrapped by this EventImpl

Get the wrapped io

impl<MT> Read for MioAdapter<MT> where
    MT: Evented + TryRead + 'static, 
[src]

Block on read.

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more

impl<MT> Write for MioAdapter<MT> where
    MT: Evented + 'static + TryWrite
[src]

Block on write.

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

Attempts to write an entire buffer into this write. Read more

Writes a formatted string into this writer, returning any error encountered. Read more

Creates a "by reference" adaptor for this instance of Write. Read more

impl<MT> FromRawFd for MioAdapter<MT> where
    MT: Evented + 'static + FromRawFd
[src]

Constructs a new instance of Self from the given raw file descriptor. Read more

impl<MT> AsRawFd for MioAdapter<MT> where
    MT: Evented + 'static + AsRawFd
[src]

Extracts the raw file descriptor. Read more