auth_require_all

Macro auth_require_all 

Source
macro_rules! auth_require_all {
    ($($f:expr),* $(,)?) => { ... };
}
Expand description

Enforce that every supplied rule future succeeds for the current caller.

This is a convenience wrapper around require_all, allowing guard checks to stay in expression position within async endpoints.