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