Enum ethcore_io::IoError [−][src]
pub enum IoError {
    StdIo(Error),
}IO Error
Variants
StdIo(Error)Error concerning the Rust standard library's IO subsystem.
Trait Implementations
impl Debug for IoError[src] 
impl Debug for IoErrorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for IoError[src] 
impl Display for IoErrorfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Error for IoError[src] 
impl Error for IoErrorfn description(&self) -> &str[src] 
fn description(&self) -> &strThis method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>1.0.0[src] 
fn cause(&self) -> Option<&Error>1.0.0
[src]The lower-level cause of this error, if any. Read more
impl From<Error> for IoError[src] 
impl From<Error> for IoError