macro_rules! bail {
($($arg:tt)*) => { ... };
}Expand description
Returns early with an error.
This macro is equivalent to
return Err(error!($args...)).
The surrounding function’s or closure’s return value is required to be
Result<_, aidoku::AidokuError>.