[][src]Struct iovec::IoVecMut

pub struct IoVecMut<'a> { /* fields omitted */ }

Mutable byte slice type for performing vectored I/O operations.

Methods

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

pub fn from_bytes(slice: &'a mut [u8]) -> Self[src]

Convert an IoVecMut from a mutable byte slice.

pub fn borrow(&self) -> IoVec[src]

Immutable borrow of the iovec.

pub fn borrow_mut(&mut self) -> IoVecMut[src]

Mutable borrow of the iovec.

Trait Implementations

impl<'a> From<&'a mut [u8]> for IoVecMut<'a>[src]

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

type Target = [u8]

The resulting type after dereferencing.

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

impl<'a> Default for IoVecMut<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for IoVecMut<'a>

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

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

Blanket Implementations

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

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, 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]