pub type AuthError = AuthRejection;Expand description
Back-compat alias: the historical single-variant name.
Aliased Type§
pub enum AuthError {
Unauthorized(String),
}Variants§
Authentication failed (missing/invalid token). Owned string so the verify path can carry its detail (expired vs revoked vs forged — the ADR-0001 composition rule: which check fired is telemetry).