std::io::Result
[-] [+]
[src]
type Result<T> = Result<T, Error>;
A type for results generated by I/O related functions where the Err type
is hard-wired to io::Error.
This typedef is generally used to avoid writing out io::Error directly and
is otherwise a direct mapping to std::result::Result.