[][src]Struct unix_ipc::RawSender

pub struct RawSender { /* fields omitted */ }

A raw sender.

Methods

impl RawSender[src]

pub fn send(&self, data: &[u8], fds: &[RawFd]) -> Result<usize>[src]

Sends raw bytes and fds.

Trait Implementations

impl AsRawFd for RawSender[src]

impl Debug for RawSender[src]

impl<'de> Deserialize<'de> for RawSender[src]

impl Drop for RawSender[src]

impl<T: Serialize + DeserializeOwned> From<RawSender> for Sender<T>[src]

impl FromRawFd for RawSender[src]

impl IntoRawFd for RawSender[src]

impl Serialize for RawSender[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,