[][src]Struct uapi::MsghdrMut

pub struct MsghdrMut<'a, 'b, 'c, 'd, T: SockAddr + ?Sized = sockaddr> {
    pub iov: &'b mut [IoSliceMut<'a>],
    pub control: Option<&'c mut [u8]>,
    pub name: Option<&'d mut T>,
    pub flags: c_int,
}

Rusty version of a mutable c::msghdr

Use sockaddr_none_mut to avoid type inference errors

Fields

iov: &'b mut [IoSliceMut<'a>]control: Option<&'c mut [u8]>name: Option<&'d mut T>flags: c_int

Auto Trait Implementations

impl<'a, 'b, 'c, 'd, T: ?Sized> RefUnwindSafe for MsghdrMut<'a, 'b, 'c, 'd, T> where
    T: RefUnwindSafe

impl<'a, 'b, 'c, 'd, T: ?Sized> Send for MsghdrMut<'a, 'b, 'c, 'd, T> where
    T: Send

impl<'a, 'b, 'c, 'd, T: ?Sized> Sync for MsghdrMut<'a, 'b, 'c, 'd, T> where
    T: Sync

impl<'a, 'b, 'c, 'd, T: ?Sized> Unpin for MsghdrMut<'a, 'b, 'c, 'd, T> where
    'a: 'b, 

impl<'a, 'b, 'c, 'd, T = sockaddr> !UnwindSafe for MsghdrMut<'a, 'b, 'c, 'd, T>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> 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.