maybe

Macro maybe 

Source
macro_rules! maybe {
    ($e:expr) => { ... };
}
Expand description

Performs the same fault injection as fallible but does not early-return, and does not try to convert the injected io::Error using the ? operator.