pub struct AuthConfig {
pub jwt_secret: Option<String>,
pub jwt_algorithm: JwtAlgorithm,
pub jwt_issuer: Option<String>,
pub jwt_audience: Option<String>,
pub token_expiry: Option<String>,
pub jwks_url: Option<String>,
pub jwks_cache_ttl_secs: u64,
pub session_ttl_secs: u64,
}Expand description
Authentication configuration.
Fields§
§jwt_secret: Option<String>JWT secret for HMAC algorithms (HS256, HS384, HS512). Required when using HMAC algorithms.
jwt_algorithm: JwtAlgorithmJWT signing algorithm. HMAC algorithms (HS256, HS384, HS512) require jwt_secret. RSA algorithms (RS256, RS384, RS512) require jwks_url.
jwt_issuer: Option<String>Expected token issuer (iss claim). If set, tokens with a different issuer are rejected.
jwt_audience: Option<String>Expected audience (aud claim). If set, tokens with a different audience are rejected.
token_expiry: Option<String>Token expiry duration (e.g., “15m”, “1h”, “7d”).
jwks_url: Option<String>JWKS URL for RSA algorithms (RS256, RS384, RS512). Keys are fetched and cached automatically.
jwks_cache_ttl_secs: u64JWKS cache TTL in seconds.
session_ttl_secs: u64Session TTL in seconds (for WebSocket sessions).
Implementations§
Trait Implementations§
Source§impl Clone for AuthConfig
impl Clone for AuthConfig
Source§fn clone(&self) -> AuthConfig
fn clone(&self) -> AuthConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuthConfig
impl Debug for AuthConfig
Source§impl Default for AuthConfig
impl Default for AuthConfig
Source§impl<'de> Deserialize<'de> for AuthConfig
impl<'de> Deserialize<'de> for AuthConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuthConfig
impl RefUnwindSafe for AuthConfig
impl Send for AuthConfig
impl Sync for AuthConfig
impl Unpin for AuthConfig
impl UnwindSafe for AuthConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more