Struct io_uring::opcode::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.

Implementations§

source§

impl SendZc

source

pub fn new(fd: impl UseFixed, buf: *const u8, len: u32) -> Self

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 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>,

§

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>,

§

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.