Macro try_or::try_or [] [src]

macro_rules! try_or {
    ( $expr:expr , $or:expr ) => { ... };
}

Helper macro for unwrapping Result values. Returns early with the value of the second parameter if the first parameter is Err.