pub struct GoogleOauthConfig {
pub client_origin: SecretResolver<String>,
pub jwt_max_age: SecretResolver<i64>,
pub redirect_url: SecretResolver<String>,
pub jwt_secret: SecretResolver<String>,
pub client_id: SecretResolver<String>,
pub client_secret: SecretResolver<String>,
}Fields§
§client_origin: SecretResolver<String>§jwt_max_age: SecretResolver<i64>§redirect_url: SecretResolver<String>§jwt_secret: SecretResolver<String>§client_id: SecretResolver<String>§client_secret: SecretResolver<String>Trait Implementations§
Source§impl Clone for GoogleOauthConfig
impl Clone for GoogleOauthConfig
Source§fn clone(&self) -> GoogleOauthConfig
fn clone(&self) -> GoogleOauthConfig
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 GoogleOauthConfig
impl Debug for GoogleOauthConfig
Source§impl<'de> Deserialize<'de> for GoogleOauthConfig
impl<'de> Deserialize<'de> for GoogleOauthConfig
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 GoogleOauthConfig
impl RefUnwindSafe for GoogleOauthConfig
impl Send for GoogleOauthConfig
impl Sync for GoogleOauthConfig
impl Unpin for GoogleOauthConfig
impl UnwindSafe for GoogleOauthConfig
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