[][src]Struct nix::sys::socket::CmsgSpace

#[repr(C)]
pub struct CmsgSpace<T> { /* fields omitted */ }

A structure used to make room in a cmsghdr passed to recvmsg. The size and alignment match that of a cmsghdr followed by a T, but the fields are not accessible, as the actual types will change on a call to recvmsg.

To make room for multiple messages, nest the type parameter with tuples:

use std::os::unix::io::RawFd;
use nix::sys::socket::CmsgSpace;
let cmsg: CmsgSpace<([RawFd; 3], CmsgSpace<[RawFd; 2]>)> = CmsgSpace::new();

Methods

impl<T> CmsgSpace<T>[src]

pub fn new() -> Self[src]

Create a CmsgSpace. The structure is used only for space, so the fields are uninitialized.

Auto Trait Implementations

impl<T> Send for CmsgSpace<T> where
    T: Send

impl<T> Sync for CmsgSpace<T> where
    T: Sync

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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