#[repr(C)]pub struct recv_in {
pub ri_data: (*const iovec, usize),
pub ri_fds: (*mut fd, usize),
pub ri_flags: riflags,
}Expand description
Arguments of sock_recv().
Fields§
§ri_data: (*const iovec, usize)List of scatter/gather vectors where message data should be stored.
ri_fds: (*mut fd, usize)Buffer where numbers of incoming file descriptors should be stored.
ri_flags: riflagsMessage flags.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for recv_in
impl RefUnwindSafe for recv_in
impl !Send for recv_in
impl !Sync for recv_in
impl Unpin for recv_in
impl UnwindSafe for recv_in
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