Module prelude

Module prelude 

Source

Re-exports§

pub use crate::zero_filled_bytes_mut;
pub use crate::Address;
pub use crate::listener::Listener;
pub use crate::connection::Connection;
pub use crate::rw::Reader;
pub use crate::rw::ReadPreReqs;
pub use crate::rw::Writer;
pub use crate::rw::WritePreReqs;

Modules§

buf
Utilities for working with buffers.

Structs§

Bytes
A cheaply cloneable and sliceable chunk of contiguous memory.
BytesMut
A unique reference to a contiguous slice of memory.
TryGetError
Error type for the try_get_ methods of Buf. Indicates that there were not enough remaining bytes in the buffer while attempting to get a value from a Buf with one of the try_get_ methods.

Traits§

Buf
Read bytes from a buffer.
BufMut
A trait for values that provide sequential write access to bytes.