[][src]Trait polyfuse::io::Writer

pub trait Writer: AsyncWrite { }

The writer of FUSE responses and notifications.

Implementations on Foreign Types

impl<'_, W: ?Sized> Writer for &'_ mut W where
    W: Writer + Unpin
[src]

impl<W: ?Sized> Writer for Box<W> where
    W: Writer + Unpin
[src]

impl<P, W: ?Sized> Writer for Pin<P> where
    P: DerefMut<Target = W> + Unpin,
    W: Writer
[src]

impl Writer for Vec<u8>[src]

Loading content...

Implementors

impl<R, W> Writer for Unite<R, W> where
    W: Writer
[src]

Loading content...