Enum std::io::CharsError
[−]
[src]
pub enum CharsError { NotUtf8, Other(Error), }
🔬 This is a nightly-only experimental API. (io
#27802)
awaiting stability of Read::chars
An enumeration of possible errors that can be generated from the Chars
adapter.
Variants
NotUtf8
🔬 This is a nightly-only experimental API. (io
#27802)
awaiting stability of Read::chars
Variant representing that the underlying stream was read successfully but it did not contain valid utf8 data.
Other(Error)
🔬 This is a nightly-only experimental API. (io
#27802)
awaiting stability of Read::chars
Variant representing that an I/O error occurred.
Trait Implementations
impl Debug for CharsError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Error for CharsError
[src]
fn description(&self) -> &str
[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
[src]
The lower-level cause of this error, if any. Read more