Struct io_uring::opcode::RecvMulti

source ·
pub struct RecvMulti { /* private fields */ }
Expand description

Receive multiple messages from a socket, equivalent to recv(2).

Parameter: buf_group: The id of the provided buffer pool to use for each received message.

MSG_WAITALL should not be set in flags.

The multishot version allows the application to issue a single receive request, which repeatedly posts a CQE when data is available. Each CQE will take a buffer out of a provided buffer pool for receiving. The application should check the flags of each CQE, regardless of its result. If a posted CQE does not have the IORING_CQE_F_MORE flag set then the multishot receive will be done and the application should issue a new request.

Multishot variants are available since kernel 6.0.

Implementations§

source§

impl RecvMulti

source

pub fn new(fd: impl UseFixed, buf_group: u16) -> Self

source

pub const CODE: u8 = 27u8

The opcode of the operation. This can be passed to Probe::is_supported to check if this operation is supported with the current kernel.

source

pub const fn flags(self, flags: i32) -> Self

source

pub fn build(self) -> Entry

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.