pub struct SendMmsgData<'a, I, C, S>where
I: AsRef<[IoSlice<'a>]>,
C: AsRef<[ControlMessage<'a>]>,
S: SockaddrLike + 'a,{
pub iov: I,
pub cmsgs: C,
pub addr: Option<S>,
pub _lt: PhantomData<&'a I>,
}
Fields
iov: I
cmsgs: C
addr: Option<S>
_lt: PhantomData<&'a I>
Trait Implementations
Auto Trait Implementations
impl<'a, I, C, S> RefUnwindSafe for SendMmsgData<'a, I, C, S>where
C: RefUnwindSafe,
I: RefUnwindSafe,
S: RefUnwindSafe,
impl<'a, I, C, S> Send for SendMmsgData<'a, I, C, S>where
C: Send,
I: Send + Sync,
S: Send,
impl<'a, I, C, S> Sync for SendMmsgData<'a, I, C, S>where
C: Sync,
I: Sync,
S: Sync,
impl<'a, I, C, S> Unpin for SendMmsgData<'a, I, C, S>where
C: Unpin,
I: Unpin,
S: Unpin,
impl<'a, I, C, S> UnwindSafe for SendMmsgData<'a, I, C, S>where
C: UnwindSafe,
I: UnwindSafe + RefUnwindSafe,
S: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more