[][src]Struct unix_fifo_async::NamedPipeWriter

pub struct NamedPipeWriter { /* fields omitted */ }

A convenience wrapper for writing to Unix named pipes.

Methods

impl NamedPipeWriter[src]

pub fn from_path(source: &NamedPipePath) -> Self[src]

pub fn ensure_pipe_exists(&self) -> Result<&Self>[src]

Checks if the named pipe actually exists and tries to create it if it doesn't.

pub async fn write<'_, '_>(&'_ self, data: &'_ [u8]) -> Result<()>[src]

Writes byte data to the pipe. The returned Future will resolve when the bytes are read from the pipe.

pub async fn write_str<'_, '_>(&'_ self, data: &'_ str) -> Result<()>[src]

Writes &str data to the pipe. The returned Future will resolve when the string is read from the pipe.

Auto Trait Implementations

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]