pub struct CsmSettings {
pub rctoken_aud: Option<String>,
}Expand description
Configuration for RCToken generated for service mesh workloads protected by IAP. RCToken are IAP generated JWTs that can be verified at the application. The RCToken is primarily used for service mesh deployments, and can be scoped to a single mesh by configuring the audience field accordingly.
This type is not used in any activity, and only used as part of another schema.
Fields§
§rctoken_aud: Option<String>Audience claim set in the generated RCToken. This value is not validated by IAP.
Trait Implementations§
Source§impl Clone for CsmSettings
impl Clone for CsmSettings
Source§fn clone(&self) -> CsmSettings
fn clone(&self) -> CsmSettings
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 CsmSettings
impl Debug for CsmSettings
Source§impl Default for CsmSettings
impl Default for CsmSettings
Source§fn default() -> CsmSettings
fn default() -> CsmSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CsmSettings
impl<'de> Deserialize<'de> for CsmSettings
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 CsmSettings
impl Serialize for CsmSettings
impl Part for CsmSettings
Auto Trait Implementations§
impl Freeze for CsmSettings
impl RefUnwindSafe for CsmSettings
impl Send for CsmSettings
impl Sync for CsmSettings
impl Unpin for CsmSettings
impl UnwindSafe for CsmSettings
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