#[repr(C)]pub struct recv_out {
pub ro_datalen: usize,
pub ro_fdslen: usize,
pub ro_unused: [u8; 40],
pub ro_flags: roflags,
}Expand description
Results of sock_recv().
Fields§
§ro_datalen: usizeNumber of bytes stored in recv_in.ri_data.
ro_fdslen: usizeNumber of file descriptors stored in recv_in.ri_fds.
ro_unused: [u8; 40]Fields that were used by previous implementations.
ro_flags: roflagsMessage flags.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for recv_out
impl RefUnwindSafe for recv_out
impl Send for recv_out
impl Sync for recv_out
impl Unpin for recv_out
impl UnwindSafe for recv_out
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