[][src]Struct uapi::MsghdrMut

pub struct MsghdrMut<'b, 'c, 'd, D: MaybeUninitIovecMut + ?Sized, C: Pod + ?Sized + 'c, T: SockAddr + ?Sized = sockaddr> {
    pub iov: &'b mut D,
    pub control: Option<&'c mut C>,
    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 Dcontrol: Option<&'c mut C>name: Option<&'d mut T>flags: c_int

Auto Trait Implementations

impl<'b, 'c, 'd, D: ?Sized, C: ?Sized, T: ?Sized> RefUnwindSafe for MsghdrMut<'b, 'c, 'd, D, C, T> where
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<'b, 'c, 'd, D: ?Sized, C: ?Sized, T: ?Sized> Send for MsghdrMut<'b, 'c, 'd, D, C, T> where
    C: Send,
    D: Send,
    T: Send
[src]

impl<'b, 'c, 'd, D: ?Sized, C: ?Sized, T: ?Sized> Sync for MsghdrMut<'b, 'c, 'd, D, C, T> where
    C: Sync,
    D: Sync,
    T: Sync
[src]

impl<'b, 'c, 'd, D: ?Sized, C: ?Sized, T: ?Sized> Unpin for MsghdrMut<'b, 'c, 'd, D, C, T>[src]

impl<'b, 'c, 'd, D, C, T = sockaddr> !UnwindSafe for MsghdrMut<'b, 'c, 'd, D, C, T>[src]

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.