Enum sgx_tstd::io::CharsError[][src]

pub enum CharsError {
    NotUtf8,
    Other(Error),
}

An enumeration of possible errors that can be generated from the Chars adapter.

Variants

Variant representing that the underlying stream was read successfully but it did not contain valid utf8 data.

Variant representing that an I/O error occurred.

Trait Implementations

impl Debug for CharsError
[src]

Formats the value using the given formatter. Read more

impl Error for CharsError
[src]

A short description of the error.

The lower-level cause of this error, if any.

Get the TypeId of self

impl Display for CharsError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for CharsError

impl Sync for CharsError