[][src]Struct cloudabi::recv_in

#[repr(C)]
pub struct recv_in {
    pub ri_data: (*const iovec, usize),
    pub ri_fds: (*mut fd, usize),
    pub ri_flags: riflags,
}

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: riflags

Message flags.

Trait Implementations

impl Clone for recv_in[src]

impl Copy for recv_in[src]

Auto Trait Implementations

impl !Send for recv_in

impl !Sync for recv_in

impl Unpin for recv_in

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.