Type Alias Result
type Result = core::result::Result<T, E>
Result<T, Error>
This is a reasonable return type to use throughout your application but also
for fn main; if you do, failures will be printed along with any
[context][Context] and a backtrace if one was captured.
anyhow::Result may be used with one or two type parameters.
use Result;
# const IGNORE: &str = stringify! ;
Example
#
#
#
#
#
# ;
#
#
#
use Result;