pub struct UnixStream { /* private fields */ }Expand description
A Unix stream between two local sockets on a Unix OS.
A Unix stream can either be created by connecting to an endpoint, via the
connect method, or by accepting a connection from a listener.
§Examples
use tokio_uring::net::UnixStream;
use std::net::ToSocketAddrs;
fn main() -> std::io::Result<()> {
tokio_uring::start(async {
// Connect to a peer
let mut stream = UnixStream::connect("/tmp/tokio-uring-unix-test.sock").await?;
// Write some data.
let (result, _) = stream.write(b"hello world!".as_slice()).submit().await;
result.unwrap();
Ok(())
})
}Implementations§
Source§impl UnixStream
impl UnixStream
Sourcepub async fn connect<P: AsRef<Path>>(path: P) -> Result<UnixStream>
pub async fn connect<P: AsRef<Path>>(path: P) -> Result<UnixStream>
Opens a Unix connection to the specified file path. There must be a
UnixListener or equivalent listening on the corresponding Unix domain socket
to successfully connect and return a UnixStream.
Sourcepub fn from_std(socket: UnixStream) -> UnixStream
pub fn from_std(socket: UnixStream) -> UnixStream
Creates new UnixStream from a previously bound std::os::unix::net::UnixStream.
This function is intended to be used to wrap a TCP stream from the standard library in the tokio-uring equivalent. The conversion assumes nothing about the underlying socket; it is left up to the user to decide what socket options are appropriate for their use case.
This can be used in conjunction with socket2’s Socket interface to
configure a socket before it’s handed off, such as setting options like
reuse_address or binding to multiple addresses.
Sourcepub async fn read<T: BoundedBufMut>(&self, buf: T) -> BufResult<usize, T>
pub async fn read<T: BoundedBufMut>(&self, buf: T) -> BufResult<usize, T>
Read some data from the stream into the buffer, returning the original buffer and quantity of data read.
Sourcepub async fn read_fixed<T>(&self, buf: T) -> BufResult<usize, T>where
T: BoundedBufMut<BufMut = FixedBuf>,
pub async fn read_fixed<T>(&self, buf: T) -> BufResult<usize, T>where
T: BoundedBufMut<BufMut = FixedBuf>,
Like read, but using a pre-mapped buffer
registered with FixedBufRegistry.
§Errors
In addition to errors that can be reported by read,
this operation fails if the buffer is not registered in the
current tokio-uring runtime.
Sourcepub fn write<T: BoundedBuf>(&self, buf: T) -> UnsubmittedWrite<T>
pub fn write<T: BoundedBuf>(&self, buf: T) -> UnsubmittedWrite<T>
Write some data to the stream from the buffer, returning the original buffer and quantity of data written.
Sourcepub async fn write_all<T: BoundedBuf>(&self, buf: T) -> BufResult<(), T>
pub async fn write_all<T: BoundedBuf>(&self, buf: T) -> BufResult<(), T>
Attempts to write an entire buffer to the stream.
This method will continuously call write until there is no more data to be
written or an error is returned. This method will not return until the entire
buffer has been successfully written or an error has occurred.
If the buffer contains no data, this will never call write.
§Errors
This function will return the first error that write returns.
Sourcepub async fn write_fixed<T>(&self, buf: T) -> BufResult<usize, T>where
T: BoundedBuf<Buf = FixedBuf>,
pub async fn write_fixed<T>(&self, buf: T) -> BufResult<usize, T>where
T: BoundedBuf<Buf = FixedBuf>,
Like write, but using a pre-mapped buffer
registered with FixedBufRegistry.
§Errors
In addition to errors that can be reported by write,
this operation fails if the buffer is not registered in the
current tokio-uring runtime.
Sourcepub async fn write_fixed_all<T>(&self, buf: T) -> BufResult<(), T>where
T: BoundedBuf<Buf = FixedBuf>,
pub async fn write_fixed_all<T>(&self, buf: T) -> BufResult<(), T>where
T: BoundedBuf<Buf = FixedBuf>,
Attempts to write an entire buffer to the stream.
This method will continuously call write_fixed until there is no more data to be
written or an error is returned. This method will not return until the entire
buffer has been successfully written or an error has occurred.
If the buffer contains no data, this will never call write_fixed.
§Errors
This function will return the first error that write_fixed returns.
Sourcepub async fn writev<T: BoundedBuf>(
&self,
buf: Vec<T>,
) -> BufResult<usize, Vec<T>>
pub async fn writev<T: BoundedBuf>( &self, buf: Vec<T>, ) -> BufResult<usize, Vec<T>>
Write data from buffers into this socket returning how many bytes were written.
This function will attempt to write the entire contents of bufs, but
the entire write may not succeed, or the write may also generate an
error. The bytes will be written starting at the specified offset.
§Return
The method returns the operation result and the same array of buffers
passed in as an argument. A return value of 0 typically means that the
underlying socket is no longer able to accept bytes and will likely not
be able to in the future as well, or that the buffer provided is empty.
§Errors
Each call to write may generate an I/O error indicating that the
operation could not be completed. If an error is returned then no bytes
in the buffer were written to this writer.
It is not considered an error if the entire buffer could not be written to this writer.
Trait Implementations§
Source§impl AsRawFd for UnixStream
impl AsRawFd for UnixStream
Source§impl FromRawFd for UnixStream
impl FromRawFd for UnixStream
Source§unsafe fn from_raw_fd(fd: RawFd) -> Self
unsafe fn from_raw_fd(fd: RawFd) -> Self
Self from the given raw file
descriptor. Read more