pub struct ProviderGoogleIdentity {
pub client_id: String,
pub jwk_uri: String,
}
Expand description
ProviderGoogleIdentity
JSON schema
{
"type": "object",
"required": [
"client_id",
"jwk_uri"
],
"properties": {
"client_id": {
"type": "string"
},
"jwk_uri": {
"type": "string"
}
}
}
Fields§
§client_id: String
§jwk_uri: String
Implementations§
Source§impl ProviderGoogleIdentity
impl ProviderGoogleIdentity
pub fn builder() -> ProviderGoogleIdentity
Trait Implementations§
Source§impl Clone for ProviderGoogleIdentity
impl Clone for ProviderGoogleIdentity
Source§fn clone(&self) -> ProviderGoogleIdentity
fn clone(&self) -> ProviderGoogleIdentity
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 ProviderGoogleIdentity
impl Debug for ProviderGoogleIdentity
Source§impl<'de> Deserialize<'de> for ProviderGoogleIdentity
impl<'de> Deserialize<'de> for ProviderGoogleIdentity
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
Source§impl From<&ProviderGoogleIdentity> for ProviderGoogleIdentity
impl From<&ProviderGoogleIdentity> for ProviderGoogleIdentity
Source§fn from(value: &ProviderGoogleIdentity) -> Self
fn from(value: &ProviderGoogleIdentity) -> Self
Converts to this type from the input type.
Source§impl From<ProviderGoogleIdentity> for AuthProvider
impl From<ProviderGoogleIdentity> for AuthProvider
Source§fn from(value: ProviderGoogleIdentity) -> Self
fn from(value: ProviderGoogleIdentity) -> Self
Converts to this type from the input type.
Source§impl From<ProviderGoogleIdentity> for ProviderGoogleIdentity
impl From<ProviderGoogleIdentity> for ProviderGoogleIdentity
Source§fn from(value: ProviderGoogleIdentity) -> Self
fn from(value: ProviderGoogleIdentity) -> Self
Converts to this type from the input type.
Source§impl Serialize for ProviderGoogleIdentity
impl Serialize for ProviderGoogleIdentity
Source§impl TryFrom<ProviderGoogleIdentity> for ProviderGoogleIdentity
impl TryFrom<ProviderGoogleIdentity> for ProviderGoogleIdentity
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ProviderGoogleIdentity) -> Result<Self, ConversionError>
fn try_from(value: ProviderGoogleIdentity) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ProviderGoogleIdentity
impl RefUnwindSafe for ProviderGoogleIdentity
impl Send for ProviderGoogleIdentity
impl Sync for ProviderGoogleIdentity
impl Unpin for ProviderGoogleIdentity
impl UnwindSafe for ProviderGoogleIdentity
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