[][src]Struct ndless::io::IoSliceMut

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

A buffer type used with Read::read_vectored.

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

Methods

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

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

Creates a new IoSliceMut wrapping a byte slice.

Panics

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

Trait Implementations

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

type Target = [u8]

The resulting type after dereferencing.

impl<'a> DerefMut for IoSliceMut<'a>[src]

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

Auto Trait Implementations

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

impl<'a> !Sync for IoSliceMut<'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]