Struct mio_st::net::TcpStream

source ·
pub struct TcpStream { /* private fields */ }
Expand description

A non-blocking TCP stream between a local socket and a remote socket.

This works much like the TcpStream in the standard library, but the Read and Write implementation don’t block and instead return a WouldBlock error.

Deregistering

TcpStream will deregister itself when dropped.

Examples

use std::time::Duration;

use mio_st::event::{Events, EventedId};
use mio_st::net::TcpStream;
use mio_st::poll::{Poller, PollOption};

let address = "127.0.0.1:8000".parse()?;
let mut stream = TcpStream::connect(address)?;

let mut poller = Poller::new()?;
let mut events = Events::new();

// Register the socket with `Poller`.
poller.register(&mut stream, EventedId(0), TcpStream::INTERESTS, PollOption::Edge)?;

poller.poll(&mut events, None)?;

// The socket might be ready at this point.

Implementations§

The interests to use when registering to receive both readable and writable events.

Create a new TCP stream and issue a non-blocking connect to the specified address.

Returns the socket address of the remote peer of this TCP connection.

Returns the socket address of the local half of this TCP connection.

Sets the value for the IP_TTL option on this socket.

Gets the value of the IP_TTL option for this socket.

Sets the value of the TCP_NODELAY option on this socket.

Gets the value of the TCP_NODELAY option on this socket.

Receives data on the socket from the remote address to which it is connected, without removing that data from the queue. On success, returns the number of bytes peeked.

Successive calls return the same data. This is accomplished by passing MSG_PEEK as a flag to the underlying recv system call.

Shuts down the read, write, or both halves of this connection.

This function will cause all pending and future I/O on the specified portions to return immediately with an appropriate value (see the documentation of Shutdown).

Get the value of the SO_ERROR option on this socket.

This will retrieve the stored error in the underlying socket, clearing the field in the process. This can be useful for checking errors between calls.

Trait Implementations§

Extracts the raw file descriptor. Read more
Formats the value using the given formatter. Read more
Register self with the given Poller instance. Read more
Reregister self with the given Poller instance. Read more
Deregister self from the given Poller instance Read more

The caller must ensure that the stream is in non-blocking mode when using this function.

Consumes this object, returning the raw underlying file descriptor. Read more
Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Like read, except that it reads into a slice of buffers. Read more
🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
Read all bytes until EOF in this source, placing them into buf. Read more
Read all bytes until EOF in this source, appending them to buf. Read more
Read the exact number of bytes required to fill buf. Read more
🔬This is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
🔬This is a nightly-only experimental API. (read_buf)
Read the exact number of bytes required to fill cursor. 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
Creates an adapter which will chain this stream with another. Read more
Creates an adapter which will read at most limit bytes from it. Read more
Write a buffer into this writer, returning how many bytes were written. Read more
Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
Like write, except that it writes from a slice of buffers. Read more
🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
Attempts to write an entire buffer into this writer. Read more
🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
Writes a formatted string into this writer, returning any error encountered. Read more
Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.