Struct mz_frontegg_auth::FronteggConfig
source · pub struct FronteggConfig {
pub admin_api_token_url: String,
pub decoding_key: DecodingKey,
pub tenant_id: Uuid,
pub now: NowFn,
pub refresh_before_secs: i64,
pub admin_role: String,
}Fields§
§admin_api_token_url: StringURL for the token endpoint, including full path.
decoding_key: DecodingKeyJWK used to validate JWTs.
tenant_id: UuidTenant id used to validate JWTs.
now: NowFnFunction to provide system time to validate exp (expires at) field of JWTs.
refresh_before_secs: i64Number of seconds before which to attempt to renew an expiring token.
admin_role: StringName of admin role.
Auto Trait Implementations§
impl !RefUnwindSafe for FronteggConfig
impl Send for FronteggConfig
impl Sync for FronteggConfig
impl Unpin for FronteggConfig
impl !UnwindSafe for FronteggConfig
Blanket Implementations§
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request