pub struct InternalOauthConfig {
pub jwt_secret: SecretResolver<String>,
pub jwt_expires_in: SecretResolver<i64>,
pub tmp_expires_in: SecretResolver<i64>,
}Fields§
§jwt_secret: SecretResolver<String>§jwt_expires_in: SecretResolver<i64>§tmp_expires_in: SecretResolver<i64>Trait Implementations§
Source§impl Clone for InternalOauthConfig
impl Clone for InternalOauthConfig
Source§fn clone(&self) -> InternalOauthConfig
fn clone(&self) -> InternalOauthConfig
Returns a copy 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 InternalOauthConfig
impl Debug for InternalOauthConfig
Source§impl<'de> Deserialize<'de> for InternalOauthConfig
impl<'de> Deserialize<'de> for InternalOauthConfig
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 InternalOauthConfig
impl RefUnwindSafe for InternalOauthConfig
impl Send for InternalOauthConfig
impl Sync for InternalOauthConfig
impl Unpin for InternalOauthConfig
impl UnwindSafe for InternalOauthConfig
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