[][src]Trait fuse::io::Channel

pub trait Channel {
    type Error: ChannelError;
    fn send(&self, buf: &[u8]) -> Result<(), Self::Error>;
fn send_vectored<const N: usize>(
        &self,
        bufs: &[&[u8]; N]
    ) -> Result<(), Self::Error>;
fn receive(&self, buf: &mut [u8]) -> Result<usize, Self::Error>; }

Associated Types

type Error: ChannelError

Loading content...

Required methods

fn send(&self, buf: &[u8]) -> Result<(), Self::Error>

fn send_vectored<const N: usize>(
    &self,
    bufs: &[&[u8]; N]
) -> Result<(), Self::Error>

This is supported on feature="nightly_impl_channel" only.

fn receive(&self, buf: &mut [u8]) -> Result<usize, Self::Error>

Loading content...

Implementors

impl Channel for DevCuseChannel[src]

type Error = Error

impl Channel for DevFuseChannel[src]

type Error = Error

Loading content...