io_uring::opcode

Struct SendZc

Source
pub struct SendZc { /* private fields */ }
Expand description

Send a zerocopy message on a socket, equivalent to send(2).

When dest_addr is non-zero it points to the address of the target with dest_addr_len specifying its size, turning the request into a sendto(2)

A fixed (pre-mapped) buffer can optionally be used from pre-mapped buffers that have been previously registered with Submitter::register_buffers.

This operation might result in two completion queue entries. See the IORING_OP_SEND_ZC section at io_uring_enter for the exact semantics. Notifications posted by this operation can be checked with notif.

Implementations§

Source§

impl SendZc

Source

pub const CODE: u8 = 47u8

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 fn new(fd: impl UseFixed, buf: *const u8, len: u32) -> Self

Source

pub const fn buf_index(self, buf_index: Option<u16>) -> Self

The buf_index is an index into an array of fixed buffers, and is only valid if fixed buffers were registered.

The buf and len arguments must fall within a region specified by buf_index in the previously registered buffer. The buffer need not be aligned with the start of the registered buffer.

Source

pub const fn dest_addr(self, dest_addr: *const sockaddr) -> Self

Source

pub const fn dest_addr_len(self, dest_addr_len: socklen_t) -> Self

Source

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

Source

pub const fn zc_flags(self, zc_flags: u16) -> Self

Source

pub fn build(self) -> Entry

Auto Trait Implementations§

§

impl Freeze for SendZc

§

impl RefUnwindSafe for SendZc

§

impl !Send for SendZc

§

impl !Sync for SendZc

§

impl Unpin for SendZc

§

impl UnwindSafe for SendZc

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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 T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.