Enum superchan::ReceiverErrorExperimental [-]  [+] [src]

pub enum ReceiverError {
    EndOfFile,
    IoError(IoError),
    ConversionError(Vec<u8>),
    DecoderError(DecoderError),
}

Variants

EndOfFile
IoError
ConversionError
DecoderError

Trait Implementations

impl Error for ReceiverError

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

fn detail(&self) -> Option<String>

impl FromError<IoError> for ReceiverError

fn from_error(err: IoError) -> ReceiverError

impl FromError<Vec<u8>> for ReceiverError

fn from_error(err: Vec<u8>) -> ReceiverError

impl FromError<DecoderError> for ReceiverError

fn from_error(err: DecoderError) -> ReceiverError

Derived Implementations

impl Show for ReceiverError

fn fmt(&self, __arg_0: &mut Formatter) -> Result