macro_rules! auth_error {
($variant:ident) => { ... };
($variant:ident, $($arg:expr),*) => { ... };
}Expand description
A helper macro for creating AuthError variants of AppError.
macro_rules! auth_error {
($variant:ident) => { ... };
($variant:ident, $($arg:expr),*) => { ... };
}A helper macro for creating AuthError variants of AppError.