pub struct JwtJwksOptions {
pub remote_url: Option<String>,
pub key_pair_algorithm: Option<JwkAlgorithm>,
pub rsa_modulus_length: Option<u32>,
pub disable_private_key_encryption: bool,
pub rotation_interval: Option<i64>,
pub grace_period: i64,
pub jwks_path: String,
}Fields§
§remote_url: Option<String>§key_pair_algorithm: Option<JwkAlgorithm>§rsa_modulus_length: Option<u32>§disable_private_key_encryption: bool§rotation_interval: Option<i64>§grace_period: i64§jwks_path: StringTrait Implementations§
Source§impl Clone for JwtJwksOptions
impl Clone for JwtJwksOptions
Source§fn clone(&self) -> JwtJwksOptions
fn clone(&self) -> JwtJwksOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JwtJwksOptions
impl Debug for JwtJwksOptions
Auto Trait Implementations§
impl Freeze for JwtJwksOptions
impl RefUnwindSafe for JwtJwksOptions
impl Send for JwtJwksOptions
impl Sync for JwtJwksOptions
impl Unpin for JwtJwksOptions
impl UnsafeUnpin for JwtJwksOptions
impl UnwindSafe for JwtJwksOptions
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