pub enum CharsError { NotUtf8, Other(Error), }
An enumeration of possible errors that can be generated from the Chars
adapter.
NotUtf8
Variant representing that the underlying stream was read successfully but it did not contain valid utf8 data.
Other(Error)
Variant representing that an I/O error occurred.
impl Debug for CharsError
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter.
impl Error for CharsError
[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl Display for CharsError
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/io/enum.CharsError.html