Skip to main content

AuthError

Type Alias AuthError 

Source
pub type AuthError = AuthRejection;
Expand description

Back-compat alias: the historical single-variant name.

Aliased Type§

pub enum AuthError {
    Unauthorized(String),
}

Variants§

§

Unauthorized(String)

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).