[][src]Struct mio::unix::pipe::Sender

pub struct Sender { /* fields omitted */ }
This is supported on Unix and crate feature os-ext only.

Sending end of an Unix pipe.

See new for documentation, including examples.

Implementations

impl Sender[src]

pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>[src]

This is supported on crate feature os-poll only.

Set the Sender into or out of non-blocking mode.

Trait Implementations

impl AsRawFd for Sender[src]

impl Debug for Sender[src]

impl From<ChildStdin> for Sender[src]

Notes

The underlying pipe is not set to non-blocking.

impl FromRawFd for Sender[src]

impl IntoRawFd for Sender[src]

impl Source for Sender[src]

impl Write for Sender[src]

Auto Trait Implementations

impl RefUnwindSafe for Sender

impl Send for Sender

impl Sync for Sender

impl Unpin for Sender

impl UnwindSafe for Sender

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