pub type TokenResponseProjection<S, C> = ServerProjection<(Conn<S, ServerAuthPolicy, C>, Bytes), S, ServerAuthResponse, C>;Expand description
Projection of a token response into the next authentication policy decision.
Aliased Type§
pub enum TokenResponseProjection<S, C> {
Ok((Conn<S, ServerAuthPolicy, C>, Bytes)),
Err(Box<(Conn<S, ServerAuthResponse, C>, FrontendMessage)>),
}Variants§
Ok((Conn<S, ServerAuthPolicy, C>, Bytes))
Contains the success value
Err(Box<(Conn<S, ServerAuthResponse, C>, FrontendMessage)>)
Contains the error value