pub struct OidcRpConfig {
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub redirect_uris: Option<Vec<String>>,
}Expand description
OIDC RP (relying party) configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§client_id: Option<String>OAuth2 client ID for OIDC.
client_secret: Option<String>Input only. OAuth2 client secret for OIDC.
redirect_uris: Option<Vec<String>>Output only. The URL(s) that this client may use in authentication requests.
Trait Implementations§
Source§impl Clone for OidcRpConfig
impl Clone for OidcRpConfig
Source§fn clone(&self) -> OidcRpConfig
fn clone(&self) -> OidcRpConfig
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 OidcRpConfig
impl Debug for OidcRpConfig
Source§impl Default for OidcRpConfig
impl Default for OidcRpConfig
Source§fn default() -> OidcRpConfig
fn default() -> OidcRpConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OidcRpConfig
impl<'de> Deserialize<'de> for OidcRpConfig
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 Serialize for OidcRpConfig
impl Serialize for OidcRpConfig
impl Part for OidcRpConfig
Auto Trait Implementations§
impl Freeze for OidcRpConfig
impl RefUnwindSafe for OidcRpConfig
impl Send for OidcRpConfig
impl Sync for OidcRpConfig
impl Unpin for OidcRpConfig
impl UnwindSafe for OidcRpConfig
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