pub struct SendMsg { /* private fields */ }
Expand description
Issue the equivalent of a sendmsg (2)
system call.
fd must be set to the socket file descriptor, addr must contains a pointer to the msghdr structure,
and flags holds the flags associated with the system call.
See also sendmsg (2)
. for the general description of the related system call.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SendMsg
impl RefUnwindSafe for SendMsg
impl !Send for SendMsg
impl !Sync for SendMsg
impl Unpin for SendMsg
impl UnwindSafe for SendMsg
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