Struct MsgHdrInit

Source
pub struct MsgHdrInit<'addr, 'bufs, 'control> { /* private fields */ }
Expand description

Configuration of a recvmsg(2) system call with initialized buffers.

This wraps msghdr on Unix and WSAMSG on Windows and supports fully initialized buffers.

For the control messages, please use MsgHdrInit::cmsg_hdr_vec to retrieve.

Implementations§

Source§

impl<'addr, 'bufs, 'control> MsgHdrInit<'addr, 'bufs, 'control>

Source

pub fn new() -> MsgHdrInit<'addr, 'bufs, 'control>

Create a new MsgHdrInit with all empty/zero fields.

Source

pub fn with_addr(self, addr: &'addr mut SockAddr) -> Self

Set the mutable address buffer to store the source address.

Corresponds to setting msg_name and msg_namelen on Unix and name and namelen on Windows.

Source

pub fn with_buffers(self, buf_list: &'bufs mut [IoSliceMut<'_>]) -> Self

Set the mutable array of buffers for receiving the message.

Corresponds to setting msg_iov and msg_iovlen on Unix and lpBuffers and dwBufferCount on Windows.

Source

pub fn with_control(self, buf: &'control mut [u8]) -> Self

Set the mutable control buffer of the message.

Corresponds to setting msg_control and msg_controllen on Unix and Control on Windows.

Source

pub fn cmsg_hdr_vec(&self) -> Vec<CMsgHdr<'_>>

Returns the list of control message headers in the message.

This decodes the control messages inside the ancillary data buffer.

Source

pub fn get_addr(&self) -> Option<&SockAddr>

Returns the optional source address in the msg.

This is a convenient method to access the address passed in Self::with_addr

Trait Implementations§

Source§

impl Debug for MsgHdrInit<'_, '_, '_>

Source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'addr, 'bufs, 'control> Freeze for MsgHdrInit<'addr, 'bufs, 'control>

§

impl<'addr, 'bufs, 'control> RefUnwindSafe for MsgHdrInit<'addr, 'bufs, 'control>

§

impl<'addr, 'bufs, 'control> !Send for MsgHdrInit<'addr, 'bufs, 'control>

§

impl<'addr, 'bufs, 'control> !Sync for MsgHdrInit<'addr, 'bufs, 'control>

§

impl<'addr, 'bufs, 'control> Unpin for MsgHdrInit<'addr, 'bufs, 'control>

§

impl<'addr, 'bufs, 'control> !UnwindSafe for MsgHdrInit<'addr, 'bufs, 'control>

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.