macro_rules! unwrap_to_internal_server_error {
    ($code:expr, $($warn_comment:tt)*) => { ... };
}
Expand description

Match the given result and do an early return with an internal server error (500) if it was an Error. Else return the unwrapped value.