pub struct AuthConfigOidcConfig {
pub id_token: Option<String>,
pub service_account: Option<String>,
}Expand description
OIDC 认证配置。
Fields§
§id_token: Option<String>§service_account: Option<String>Trait Implementations§
Source§impl Clone for AuthConfigOidcConfig
impl Clone for AuthConfigOidcConfig
Source§fn clone(&self) -> AuthConfigOidcConfig
fn clone(&self) -> AuthConfigOidcConfig
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 AuthConfigOidcConfig
impl Debug for AuthConfigOidcConfig
Source§impl Default for AuthConfigOidcConfig
impl Default for AuthConfigOidcConfig
Source§fn default() -> AuthConfigOidcConfig
fn default() -> AuthConfigOidcConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthConfigOidcConfig
impl<'de> Deserialize<'de> for AuthConfigOidcConfig
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 AuthConfigOidcConfig
impl RefUnwindSafe for AuthConfigOidcConfig
impl Send for AuthConfigOidcConfig
impl Sync for AuthConfigOidcConfig
impl Unpin for AuthConfigOidcConfig
impl UnsafeUnpin for AuthConfigOidcConfig
impl UnwindSafe for AuthConfigOidcConfig
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