pub struct TcpStream { /* private fields */ }
Expand description
An I/O object representing a TCP stream connected to a remote endpoint.
A TCP stream can either be created by connecting to an endpoint, via the
connect
method, or by accepting a connection from a listener.
Examples
use futures::Future;
use tokio::io::AsyncWrite;
use tokio::net::TcpStream;
use std::net::SocketAddr;
let addr = "127.0.0.1:34254".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|mut stream| {
// Attempt to write bytes asynchronously to the stream
stream.poll_write(&[1]);
});
Implementations
sourceimpl TcpStream
impl TcpStream
sourcepub fn connect(addr: &SocketAddr) -> ConnectFuture
pub fn connect(addr: &SocketAddr) -> ConnectFuture
Create a new TCP stream connected to the specified address.
This function will create a new TCP socket and attempt to connect it to
the addr
provided. The returned future will be resolved once the
stream has successfully connected, or it will return an error if one
occurs.
Examples
use futures::Future;
use tokio::net::TcpStream;
use std::net::SocketAddr;
let addr = "127.0.0.1:34254".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr)
.map(|stream|
println!("successfully connected to {}", stream.local_addr().unwrap()));
sourcepub fn from_std(stream: TcpStream, handle: &Handle) -> Result<TcpStream, Error>
pub fn from_std(stream: TcpStream, handle: &Handle) -> Result<TcpStream, Error>
Create a new TcpStream
from a net::TcpStream
.
This function will convert a TCP stream created by the standard library
to a TCP stream ready to be used with the provided event loop handle.
Use Handle::default()
to lazily bind to an event loop, just like connect
does.
Examples
use tokio::net::TcpStream;
use std::net::TcpStream as StdTcpStream;
use tokio_reactor::Handle;
let std_stream = StdTcpStream::connect("127.0.0.1:34254")?;
let stream = TcpStream::from_std(std_stream, &Handle::default())?;
sourcepub fn connect_std(
stream: TcpStream,
addr: &SocketAddr,
handle: &Handle
) -> ConnectFuture
pub fn connect_std(
stream: TcpStream,
addr: &SocketAddr,
handle: &Handle
) -> ConnectFuture
Creates a new TcpStream
from the pending socket inside the given
std::net::TcpStream
, connecting it to the address specified.
This constructor allows configuring the socket before it’s actually
connected, and this function will transfer ownership to the returned
TcpStream
if successful. An unconnected TcpStream
can be created
with the net2::TcpBuilder
type (and also configured via that route).
The platform specific behavior of this function looks like:
-
On Unix, the socket is placed into nonblocking mode and then a
connect
call is issued. -
On Windows, the address is stored internally and the connect operation is issued when the returned
TcpStream
is registered with an event loop. Note that on Windows you mustbind
a socket before it can be connected, so if a customTcpBuilder
is used it should be bound (perhaps toINADDR_ANY
) before this method is called.
sourcepub fn poll_read_ready(&self, mask: Ready) -> Result<Async<Ready>, Error>
pub fn poll_read_ready(&self, mask: Ready) -> Result<Async<Ready>, Error>
Check the TCP stream’s read readiness state.
The mask argument allows specifying what readiness to notify on. This
can be any value, including platform specific readiness, except
writable
. HUP is always implicitly included on platforms that support
it.
If the resource is not ready for a read then Async::NotReady
is
returned and the current task is notified once a new event is received.
The stream will remain in a read-ready state until calls to poll_read
return NotReady
.
Panics
This function panics if:
ready
includes writable.- called from outside of a task context.
Examples
use mio::Ready;
use futures::Async;
use futures::Future;
use tokio::net::TcpStream;
use std::net::SocketAddr;
let addr = "127.0.0.1:34254".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
match stream.poll_read_ready(Ready::readable()) {
Ok(Async::Ready(_)) => println!("read ready"),
Ok(Async::NotReady) => println!("not read ready"),
Err(e) => eprintln!("got error: {}", e),
}
});
sourcepub fn poll_write_ready(&self) -> Result<Async<Ready>, Error>
pub fn poll_write_ready(&self) -> Result<Async<Ready>, Error>
Check the TCP stream’s write readiness state.
This always checks for writable readiness and also checks for HUP readiness on platforms that support it.
If the resource is not ready for a write then Async::NotReady
is
returned and the current task is notified once a new event is received.
The I/O resource will remain in a write-ready state until calls to
poll_write
return NotReady
.
Panics
This function panics if called from outside of a task context.
Examples
use futures::Async;
use futures::Future;
use tokio::net::TcpStream;
use std::net::SocketAddr;
let addr = "127.0.0.1:34254".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
match stream.poll_write_ready() {
Ok(Async::Ready(_)) => println!("write ready"),
Ok(Async::NotReady) => println!("not write ready"),
Err(e) => eprintln!("got error: {}", e),
}
});
sourcepub fn local_addr(&self) -> Result<SocketAddr, Error>
pub fn local_addr(&self) -> Result<SocketAddr, Error>
Returns the local address that this stream is bound to.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4};
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
assert_eq!(stream.local_addr().unwrap(),
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), 8080)));
});
sourcepub fn peer_addr(&self) -> Result<SocketAddr, Error>
pub fn peer_addr(&self) -> Result<SocketAddr, Error>
Returns the remote address that this stream is connected to.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4};
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
assert_eq!(stream.peer_addr().unwrap(),
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), 8080)));
});
sourcepub fn poll_peek(&mut self, buf: &mut [u8]) -> Result<Async<usize>, Error>
pub fn poll_peek(&mut self, buf: &mut [u8]) -> Result<Async<usize>, Error>
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.
Return
On success, returns Ok(Async::Ready(num_bytes_read))
.
If no data is available for reading, the method returns
Ok(Async::NotReady)
and arranges for the current task to receive a
notification when the socket becomes readable or is closed.
Panics
This function will panic if called from outside of a task context.
Examples
use tokio::net::TcpStream;
use futures::Async;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|mut stream| {
let mut buf = [0; 10];
match stream.poll_peek(&mut buf) {
Ok(Async::Ready(len)) => println!("read {} bytes", len),
Ok(Async::NotReady) => println!("no data available"),
Err(e) => eprintln!("got error: {}", e),
}
});
sourcepub fn shutdown(&self, how: Shutdown) -> Result<(), Error>
pub fn shutdown(&self, how: Shutdown) -> Result<(), Error>
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
).
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::{Shutdown, SocketAddr};
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.shutdown(Shutdown::Both)
});
sourcepub fn nodelay(&self) -> Result<bool, Error>
pub fn nodelay(&self) -> Result<bool, Error>
Gets the value of the TCP_NODELAY
option on this socket.
For more information about this option, see set_nodelay
.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_nodelay(true).expect("set_nodelay call failed");;
assert_eq!(stream.nodelay().unwrap_or(false), true);
});
sourcepub fn set_nodelay(&self, nodelay: bool) -> Result<(), Error>
pub fn set_nodelay(&self, nodelay: bool) -> Result<(), Error>
Sets the value of the TCP_NODELAY
option on this socket.
If set, this option disables the Nagle algorithm. This means that segments are always sent as soon as possible, even if there is only a small amount of data. When not set, data is buffered until there is a sufficient amount to send out, thereby avoiding the frequent sending of small packets.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_nodelay(true).expect("set_nodelay call failed");
});
sourcepub fn recv_buffer_size(&self) -> Result<usize, Error>
pub fn recv_buffer_size(&self) -> Result<usize, Error>
Gets the value of the SO_RCVBUF
option on this socket.
For more information about this option, see set_recv_buffer_size
.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_recv_buffer_size(100).expect("set_recv_buffer_size failed");
assert_eq!(stream.recv_buffer_size().unwrap_or(0), 100);
});
sourcepub fn set_recv_buffer_size(&self, size: usize) -> Result<(), Error>
pub fn set_recv_buffer_size(&self, size: usize) -> Result<(), Error>
Sets the value of the SO_RCVBUF
option on this socket.
Changes the size of the operating system’s receive buffer associated with the socket.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_recv_buffer_size(100).expect("set_recv_buffer_size failed");
});
sourcepub fn send_buffer_size(&self) -> Result<usize, Error>
pub fn send_buffer_size(&self) -> Result<usize, Error>
Gets the value of the SO_SNDBUF
option on this socket.
For more information about this option, see set_send_buffer
.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_send_buffer_size(100).expect("set_send_buffer_size failed");
assert_eq!(stream.send_buffer_size().unwrap_or(0), 100);
});
sourcepub fn set_send_buffer_size(&self, size: usize) -> Result<(), Error>
pub fn set_send_buffer_size(&self, size: usize) -> Result<(), Error>
Sets the value of the SO_SNDBUF
option on this socket.
Changes the size of the operating system’s send buffer associated with the socket.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_send_buffer_size(100).expect("set_send_buffer_size failed");
});
sourcepub fn keepalive(&self) -> Result<Option<Duration>, Error>
pub fn keepalive(&self) -> Result<Option<Duration>, Error>
Returns whether keepalive messages are enabled on this socket, and if so the duration of time between them.
For more information about this option, see set_keepalive
.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_keepalive(None).expect("set_keepalive failed");
assert_eq!(stream.keepalive().unwrap(), None);
});
sourcepub fn set_keepalive(&self, keepalive: Option<Duration>) -> Result<(), Error>
pub fn set_keepalive(&self, keepalive: Option<Duration>) -> Result<(), Error>
Sets whether keepalive messages are enabled to be sent on this socket.
On Unix, this option will set the SO_KEEPALIVE
as well as the
TCP_KEEPALIVE
or TCP_KEEPIDLE
option (depending on your platform).
On Windows, this will set the SIO_KEEPALIVE_VALS
option.
If None
is specified then keepalive messages are disabled, otherwise
the duration specified will be the time to remain idle before sending a
TCP keepalive probe.
Some platforms specify this value in seconds, so sub-second specifications may be omitted.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_keepalive(None).expect("set_keepalive failed");
});
sourcepub fn ttl(&self) -> Result<u32, Error>
pub fn ttl(&self) -> Result<u32, Error>
Gets the value of the IP_TTL
option for this socket.
For more information about this option, see set_ttl
.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_ttl(100).expect("set_ttl failed");
assert_eq!(stream.ttl().unwrap_or(0), 100);
});
sourcepub fn set_ttl(&self, ttl: u32) -> Result<(), Error>
pub fn set_ttl(&self, ttl: u32) -> Result<(), Error>
Sets the value for the IP_TTL
option on this socket.
This value sets the time-to-live field that is used in every packet sent from this socket.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_ttl(100).expect("set_ttl failed");
});
sourcepub fn linger(&self) -> Result<Option<Duration>, Error>
pub fn linger(&self) -> Result<Option<Duration>, Error>
Reads the linger duration for this socket by getting the SO_LINGER
option.
For more information about this option, see set_linger
.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_linger(None).expect("set_linger failed");
assert_eq!(stream.linger().unwrap(), None);
});
sourcepub fn set_linger(&self, dur: Option<Duration>) -> Result<(), Error>
pub fn set_linger(&self, dur: Option<Duration>) -> Result<(), Error>
Sets the linger duration of this socket by setting the SO_LINGER
option.
This option controls the action taken when a stream has unsent messages
and the stream is closed. If SO_LINGER
is set, the system
shall block the process until it can transmit the data or until the
time expires.
If SO_LINGER
is not specified, and the stream is closed, the system
handles the call in a way that allows the process to continue as quickly
as possible.
Examples
use tokio::net::TcpStream;
use futures::Future;
use std::net::SocketAddr;
let addr = "127.0.0.1:8080".parse::<SocketAddr>()?;
let stream = TcpStream::connect(&addr);
stream.map(|stream| {
stream.set_linger(None).expect("set_linger failed");
});
Trait Implementations
sourceimpl<'a> AsyncRead for &'a TcpStream
impl<'a> AsyncRead for &'a TcpStream
sourcepub unsafe fn prepare_uninitialized_buffer(&self, &mut [u8]) -> bool
pub unsafe fn prepare_uninitialized_buffer(&self, &mut [u8]) -> bool
Prepares an uninitialized buffer to be safe to pass to read
. Returns
true
if the supplied buffer was zeroed out. Read more
sourcepub fn read_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: BufMut,
pub fn read_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: BufMut,
Pull some bytes from this source into the specified BufMut
, returning
how many bytes were read. Read more
sourcefn poll_read(&mut self, buf: &mut [u8]) -> Result<Async<usize>, Error>
fn poll_read(&mut self, buf: &mut [u8]) -> Result<Async<usize>, Error>
Attempt to read from the AsyncRead
into buf
. Read more
sourcefn framed<T>(self, codec: T) -> Framed<Self, T> where
T: Encoder + Decoder,
Self: AsyncWrite,
fn framed<T>(self, codec: T) -> Framed<Self, T> where
T: Encoder + Decoder,
Self: AsyncWrite,
Use tokio_codec::Decoder::framed instead
Provides a Stream
and Sink
interface for reading and writing to this
I/O object, using Decode
and Encode
to read and write the raw data. Read more
sourceimpl AsyncRead for TcpStream
impl AsyncRead for TcpStream
sourcepub unsafe fn prepare_uninitialized_buffer(&self, &mut [u8]) -> bool
pub unsafe fn prepare_uninitialized_buffer(&self, &mut [u8]) -> bool
Prepares an uninitialized buffer to be safe to pass to read
. Returns
true
if the supplied buffer was zeroed out. Read more
sourcepub fn read_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: BufMut,
pub fn read_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: BufMut,
Pull some bytes from this source into the specified BufMut
, returning
how many bytes were read. Read more
sourcefn poll_read(&mut self, buf: &mut [u8]) -> Result<Async<usize>, Error>
fn poll_read(&mut self, buf: &mut [u8]) -> Result<Async<usize>, Error>
Attempt to read from the AsyncRead
into buf
. Read more
sourcefn framed<T>(self, codec: T) -> Framed<Self, T> where
T: Encoder + Decoder,
Self: AsyncWrite,
fn framed<T>(self, codec: T) -> Framed<Self, T> where
T: Encoder + Decoder,
Self: AsyncWrite,
Use tokio_codec::Decoder::framed instead
Provides a Stream
and Sink
interface for reading and writing to this
I/O object, using Decode
and Encode
to read and write the raw data. Read more
sourceimpl<'a> AsyncWrite for &'a TcpStream
impl<'a> AsyncWrite for &'a TcpStream
sourcepub fn shutdown(&mut self) -> Result<Async<()>, Error>
pub fn shutdown(&mut self) -> Result<Async<()>, Error>
Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
sourcepub fn write_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: Buf,
pub fn write_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: Buf,
Write a Buf
into this value, returning how many bytes were written. Read more
sourceimpl AsyncWrite for TcpStream
impl AsyncWrite for TcpStream
sourcepub fn shutdown(&mut self) -> Result<Async<()>, Error>
pub fn shutdown(&mut self) -> Result<Async<()>, Error>
Initiates or attempts to shut down this writer, returning success when the I/O connection has completely shut down. Read more
sourcepub fn write_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: Buf,
pub fn write_buf<B>(&mut self, buf: &mut B) -> Result<Async<usize>, Error> where
B: Buf,
Write a Buf
into this value, returning how many bytes were written. Read more
sourceimpl<'a> Read for &'a TcpStream
impl<'a> Read for &'a TcpStream
sourcepub fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
pub fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
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 Read
er 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 Read for TcpStream
impl Read for TcpStream
sourcepub fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
pub fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
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 Read
er 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> Write for &'a TcpStream
impl<'a> Write for &'a TcpStream
sourcepub fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
pub fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcepub fn flush(&mut self) -> Result<(), Error>
pub fn flush(&mut self) -> Result<(), Error>
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 Write
r 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 Write for TcpStream
impl Write for TcpStream
sourcepub fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
pub fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Write a buffer into this writer, returning how many bytes were written. Read more
sourcepub fn flush(&mut self) -> Result<(), Error>
pub fn flush(&mut self) -> Result<(), Error>
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 Write
r 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 TcpStream
impl Send for TcpStream
impl Sync for TcpStream
impl Unpin for TcpStream
impl !UnwindSafe for TcpStream
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<R> ReadBytesExt for R where
R: Read + ?Sized,
impl<R> ReadBytesExt for R where
R: Read + ?Sized,
sourcefn read_u8(&mut self) -> Result<u8, Error>
fn read_u8(&mut self) -> Result<u8, Error>
Reads an unsigned 8 bit integer from the underlying reader. Read more
sourcefn read_i8(&mut self) -> Result<i8, Error>
fn read_i8(&mut self) -> Result<i8, Error>
Reads a signed 8 bit integer from the underlying reader. Read more
sourcefn read_u16<T>(&mut self) -> Result<u16, Error> where
T: ByteOrder,
fn read_u16<T>(&mut self) -> Result<u16, Error> where
T: ByteOrder,
Reads an unsigned 16 bit integer from the underlying reader. Read more
sourcefn read_i16<T>(&mut self) -> Result<i16, Error> where
T: ByteOrder,
fn read_i16<T>(&mut self) -> Result<i16, Error> where
T: ByteOrder,
Reads a signed 16 bit integer from the underlying reader. Read more
sourcefn read_u24<T>(&mut self) -> Result<u32, Error> where
T: ByteOrder,
fn read_u24<T>(&mut self) -> Result<u32, Error> where
T: ByteOrder,
Reads an unsigned 24 bit integer from the underlying reader. Read more
sourcefn read_i24<T>(&mut self) -> Result<i32, Error> where
T: ByteOrder,
fn read_i24<T>(&mut self) -> Result<i32, Error> where
T: ByteOrder,
Reads a signed 24 bit integer from the underlying reader. Read more
sourcefn read_u32<T>(&mut self) -> Result<u32, Error> where
T: ByteOrder,
fn read_u32<T>(&mut self) -> Result<u32, Error> where
T: ByteOrder,
Reads an unsigned 32 bit integer from the underlying reader. Read more
sourcefn read_i32<T>(&mut self) -> Result<i32, Error> where
T: ByteOrder,
fn read_i32<T>(&mut self) -> Result<i32, Error> where
T: ByteOrder,
Reads a signed 32 bit integer from the underlying reader. Read more
sourcefn read_u48<T>(&mut self) -> Result<u64, Error> where
T: ByteOrder,
fn read_u48<T>(&mut self) -> Result<u64, Error> where
T: ByteOrder,
Reads an unsigned 48 bit integer from the underlying reader. Read more
sourcefn read_i48<T>(&mut self) -> Result<i64, Error> where
T: ByteOrder,
fn read_i48<T>(&mut self) -> Result<i64, Error> where
T: ByteOrder,
Reads a signed 48 bit integer from the underlying reader. Read more
sourcefn read_u64<T>(&mut self) -> Result<u64, Error> where
T: ByteOrder,
fn read_u64<T>(&mut self) -> Result<u64, Error> where
T: ByteOrder,
Reads an unsigned 64 bit integer from the underlying reader. Read more
sourcefn read_i64<T>(&mut self) -> Result<i64, Error> where
T: ByteOrder,
fn read_i64<T>(&mut self) -> Result<i64, Error> where
T: ByteOrder,
Reads a signed 64 bit integer from the underlying reader. Read more
sourcefn read_u128<T>(&mut self) -> Result<u128, Error> where
T: ByteOrder,
fn read_u128<T>(&mut self) -> Result<u128, Error> where
T: ByteOrder,
Reads an unsigned 128 bit integer from the underlying reader. Read more
sourcefn read_i128<T>(&mut self) -> Result<i128, Error> where
T: ByteOrder,
fn read_i128<T>(&mut self) -> Result<i128, Error> where
T: ByteOrder,
Reads a signed 128 bit integer from the underlying reader. Read more
sourcefn read_uint<T>(&mut self, nbytes: usize) -> Result<u64, Error> where
T: ByteOrder,
fn read_uint<T>(&mut self, nbytes: usize) -> Result<u64, Error> where
T: ByteOrder,
Reads an unsigned n-bytes integer from the underlying reader. Read more
sourcefn read_int<T>(&mut self, nbytes: usize) -> Result<i64, Error> where
T: ByteOrder,
fn read_int<T>(&mut self, nbytes: usize) -> Result<i64, Error> where
T: ByteOrder,
Reads a signed n-bytes integer from the underlying reader. Read more
sourcefn read_uint128<T>(&mut self, nbytes: usize) -> Result<u128, Error> where
T: ByteOrder,
fn read_uint128<T>(&mut self, nbytes: usize) -> Result<u128, Error> where
T: ByteOrder,
Reads an unsigned n-bytes integer from the underlying reader.
sourcefn read_int128<T>(&mut self, nbytes: usize) -> Result<i128, Error> where
T: ByteOrder,
fn read_int128<T>(&mut self, nbytes: usize) -> Result<i128, Error> where
T: ByteOrder,
Reads a signed n-bytes integer from the underlying reader.
sourcefn read_f32<T>(&mut self) -> Result<f32, Error> where
T: ByteOrder,
fn read_f32<T>(&mut self) -> Result<f32, Error> where
T: ByteOrder,
Reads a IEEE754 single-precision (4 bytes) floating point number from the underlying reader. Read more
sourcefn read_f64<T>(&mut self) -> Result<f64, Error> where
T: ByteOrder,
fn read_f64<T>(&mut self) -> Result<f64, Error> where
T: ByteOrder,
Reads a IEEE754 double-precision (8 bytes) floating point number from the underlying reader. Read more
sourcefn read_u16_into<T>(&mut self, dst: &mut [u16]) -> Result<(), Error> where
T: ByteOrder,
fn read_u16_into<T>(&mut self, dst: &mut [u16]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of unsigned 16 bit integers from the underlying reader. Read more
sourcefn read_u32_into<T>(&mut self, dst: &mut [u32]) -> Result<(), Error> where
T: ByteOrder,
fn read_u32_into<T>(&mut self, dst: &mut [u32]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of unsigned 32 bit integers from the underlying reader. Read more
sourcefn read_u64_into<T>(&mut self, dst: &mut [u64]) -> Result<(), Error> where
T: ByteOrder,
fn read_u64_into<T>(&mut self, dst: &mut [u64]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of unsigned 64 bit integers from the underlying reader. Read more
sourcefn read_u128_into<T>(&mut self, dst: &mut [u128]) -> Result<(), Error> where
T: ByteOrder,
fn read_u128_into<T>(&mut self, dst: &mut [u128]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of unsigned 128 bit integers from the underlying reader. Read more
sourcefn read_i8_into(&mut self, dst: &mut [i8]) -> Result<(), Error>
fn read_i8_into(&mut self, dst: &mut [i8]) -> Result<(), Error>
Reads a sequence of signed 8 bit integers from the underlying reader. Read more
sourcefn read_i16_into<T>(&mut self, dst: &mut [i16]) -> Result<(), Error> where
T: ByteOrder,
fn read_i16_into<T>(&mut self, dst: &mut [i16]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of signed 16 bit integers from the underlying reader. Read more
sourcefn read_i32_into<T>(&mut self, dst: &mut [i32]) -> Result<(), Error> where
T: ByteOrder,
fn read_i32_into<T>(&mut self, dst: &mut [i32]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of signed 32 bit integers from the underlying reader. Read more
sourcefn read_i64_into<T>(&mut self, dst: &mut [i64]) -> Result<(), Error> where
T: ByteOrder,
fn read_i64_into<T>(&mut self, dst: &mut [i64]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of signed 64 bit integers from the underlying reader. Read more
sourcefn read_i128_into<T>(&mut self, dst: &mut [i128]) -> Result<(), Error> where
T: ByteOrder,
fn read_i128_into<T>(&mut self, dst: &mut [i128]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of signed 128 bit integers from the underlying reader. Read more
sourcefn read_f32_into<T>(&mut self, dst: &mut [f32]) -> Result<(), Error> where
T: ByteOrder,
fn read_f32_into<T>(&mut self, dst: &mut [f32]) -> Result<(), Error> where
T: ByteOrder,
Reads a sequence of IEEE754 single-precision (4 bytes) floating point numbers from the underlying reader. Read more
sourcefn read_f32_into_unchecked<T>(&mut self, dst: &mut [f32]) -> Result<(), Error> where
T: ByteOrder,
fn read_f32_into_unchecked<T>(&mut self, dst: &mut [f32]) -> Result<(), Error> where
T: ByteOrder,
please use read_f32_into
instead
DEPRECATED. Read more
sourceimpl<W> WriteBytesExt for W where
W: Write + ?Sized,
impl<W> WriteBytesExt for W where
W: Write + ?Sized,
sourcefn write_u8(&mut self, n: u8) -> Result<(), Error>
fn write_u8(&mut self, n: u8) -> Result<(), Error>
Writes an unsigned 8 bit integer to the underlying writer. Read more
sourcefn write_i8(&mut self, n: i8) -> Result<(), Error>
fn write_i8(&mut self, n: i8) -> Result<(), Error>
Writes a signed 8 bit integer to the underlying writer. Read more
sourcefn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder,
fn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 16 bit integer to the underlying writer. Read more
sourcefn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder,
fn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 16 bit integer to the underlying writer. Read more
sourcefn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
fn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 24 bit integer to the underlying writer. Read more
sourcefn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
fn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 24 bit integer to the underlying writer. Read more
sourcefn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
fn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 32 bit integer to the underlying writer. Read more
sourcefn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
fn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 32 bit integer to the underlying writer. Read more
sourcefn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
fn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 48 bit integer to the underlying writer. Read more
sourcefn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
fn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 48 bit integer to the underlying writer. Read more
sourcefn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
fn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 64 bit integer to the underlying writer. Read more
sourcefn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
fn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 64 bit integer to the underlying writer. Read more
sourcefn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder,
fn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned 128 bit integer to the underlying writer.
sourcefn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder,
fn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder,
Writes a signed 128 bit integer to the underlying writer.
sourcefn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned n-bytes integer to the underlying writer. Read more
sourcefn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes a signed n-bytes integer to the underlying writer. Read more
sourcefn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes an unsigned n-bytes integer to the underlying writer. Read more
sourcefn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
fn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
Writes a signed n-bytes integer to the underlying writer. Read more