Struct nix::sys::socket::SendMmsgData[][src]

pub struct SendMmsgData<'a, I, C> where
    I: AsRef<[IoVec<&'a [u8]>]>,
    C: AsRef<[ControlMessage<'a>]>, 
{ pub iov: I, pub cmsgs: C, pub addr: Option<SockAddr>, pub _lt: PhantomData<&'a I>, }

Fields

iov: Icmsgs: Caddr: Option<SockAddr>_lt: PhantomData<&'a I>

Trait Implementations

impl<'a, I: Debug, C: Debug> Debug for SendMmsgData<'a, I, C> where
    I: AsRef<[IoVec<&'a [u8]>]>,
    C: AsRef<[ControlMessage<'a>]>, 
[src]

Auto Trait Implementations

impl<'a, I, C> RefUnwindSafe for SendMmsgData<'a, I, C> where
    C: RefUnwindSafe,
    I: RefUnwindSafe
[src]

impl<'a, I, C> Send for SendMmsgData<'a, I, C> where
    C: Send,
    I: Send + Sync
[src]

impl<'a, I, C> Sync for SendMmsgData<'a, I, C> where
    C: Sync,
    I: Sync
[src]

impl<'a, I, C> Unpin for SendMmsgData<'a, I, C> where
    C: Unpin,
    I: Unpin
[src]

impl<'a, I, C> UnwindSafe for SendMmsgData<'a, I, C> where
    C: UnwindSafe,
    I: RefUnwindSafe + UnwindSafe
[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.