#[repr(C)]pub struct MsgHdr {
pub msg_name: *mut c_void,
pub msg_namelen: u32,
pub msg_iov: *mut iovec,
pub msg_iovlen: usize,
pub msg_control: *mut c_void,
pub msg_controllen: usize,
pub msg_flags: RecvFlags,
}Expand description
msghdr
Fields§
§msg_name: *mut c_void§msg_namelen: u32§msg_iov: *mut iovec§msg_iovlen: usize§msg_control: *mut c_void§msg_controllen: usize§msg_flags: RecvFlagsAuto Trait Implementations§
impl Freeze for MsgHdr
impl RefUnwindSafe for MsgHdr
impl !Send for MsgHdr
impl !Sync for MsgHdr
impl Unpin for MsgHdr
impl UnwindSafe for MsgHdr
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