pub type ResolveResponse = Option<Access>;Expand description
Output of the auth resolver pipeline. Some(access) short-circuits
the pipeline; None means “I don’t have an opinion, fall through.”
Aliased Type§
pub enum ResolveResponse {
None,
Some(Access),
}