[][src]Struct ndless::io::IoSlice

#[repr(transparent)]
pub struct IoSlice<'a>(_);

A buffer type used with Write::write_vectored.

It is semantically a wrapper around an &[u8], but is guaranteed to be ABI compatible with the iovec type on Unix platforms and WSABUF on Windows.

Methods

impl<'a> IoSlice<'a>[src]

pub fn new(buf: &'a [u8]) -> IoSlice<'a>[src]

Creates a new IoSlice wrapping a byte slice.

Panics

Panics on Windows if the slice is larger than 4GB.

Trait Implementations

impl<'a> Deref for IoSlice<'a>[src]

type Target = [u8]

The resulting type after dereferencing.

impl<'a> Debug for IoSlice<'a>[src]

Auto Trait Implementations

impl<'a> !Send for IoSlice<'a>

impl<'a> !Sync for IoSlice<'a>

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]