std::io::Result [] [src]

type Result<T> = Result<T, Error>;

A type for results generated by I/O related functions where the Err`Errtype is hard-wired to` type is hard-wired to io::Error`io::Error`.

This typedef is generally used to avoid writing out io::Error`io::Errordirectly and is otherwise a direct mapping to` directly and is otherwise a direct mapping to std::result::Result`std::result::Result`.