pub struct RecvmsgArgs<'a> {
    pub iovs: &'a [IoVec],
    pub control_ptr: ForeignArrayPtr<u8>,
    pub flags: c_int,
}Expand description
Arguments for Socket::recvmsg().
Fields§
§iovs: &'a [IoVec]IoVec buffers in plugin memory to store the message data.
control_ptr: ForeignArrayPtr<u8>Buffer in plugin memory to store the message control data.
flags: c_intRecv flags.
Auto Trait Implementations§
impl<'a> Freeze for RecvmsgArgs<'a>
impl<'a> RefUnwindSafe for RecvmsgArgs<'a>
impl<'a> Send for RecvmsgArgs<'a>
impl<'a> Sync for RecvmsgArgs<'a>
impl<'a> Unpin for RecvmsgArgs<'a>
impl<'a> UnwindSafe for RecvmsgArgs<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more