#[non_exhaustive]pub struct IdentityAwareProxyClient {
pub name: String,
pub secret: String,
pub display_name: String,
/* private fields */
}Expand description
Contains the data that describes an Identity Aware Proxy owned client.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringOutput only. Unique identifier of the OAuth client.
secret: StringOutput only. Client secret of the OAuth client.
display_name: StringHuman-friendly name given to the OAuth client.
Implementations§
Trait Implementations§
Source§impl Clone for IdentityAwareProxyClient
impl Clone for IdentityAwareProxyClient
Source§fn clone(&self) -> IdentityAwareProxyClient
fn clone(&self) -> IdentityAwareProxyClient
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 IdentityAwareProxyClient
impl Debug for IdentityAwareProxyClient
Source§impl Default for IdentityAwareProxyClient
impl Default for IdentityAwareProxyClient
Source§fn default() -> IdentityAwareProxyClient
fn default() -> IdentityAwareProxyClient
Returns the “default value” for a type. Read more
Source§impl Message for IdentityAwareProxyClient
impl Message for IdentityAwareProxyClient
Source§impl PartialEq for IdentityAwareProxyClient
impl PartialEq for IdentityAwareProxyClient
impl StructuralPartialEq for IdentityAwareProxyClient
Auto Trait Implementations§
impl Freeze for IdentityAwareProxyClient
impl RefUnwindSafe for IdentityAwareProxyClient
impl Send for IdentityAwareProxyClient
impl Sync for IdentityAwareProxyClient
impl Unpin for IdentityAwareProxyClient
impl UnwindSafe for IdentityAwareProxyClient
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