pub struct SamlSpConfig {
pub assertion_consumer_service_uri: Option<String>,
pub entity_id: Option<String>,
}Expand description
SAML SP (service provider) configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§assertion_consumer_service_uri: Option<String>Output only. The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
entity_id: Option<String>Output only. The SAML Entity ID for this service provider.
Trait Implementations§
Source§impl Clone for SamlSpConfig
impl Clone for SamlSpConfig
Source§fn clone(&self) -> SamlSpConfig
fn clone(&self) -> SamlSpConfig
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 SamlSpConfig
impl Debug for SamlSpConfig
Source§impl Default for SamlSpConfig
impl Default for SamlSpConfig
Source§fn default() -> SamlSpConfig
fn default() -> SamlSpConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SamlSpConfig
impl<'de> Deserialize<'de> for SamlSpConfig
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 SamlSpConfig
impl Serialize for SamlSpConfig
impl Part for SamlSpConfig
Auto Trait Implementations§
impl Freeze for SamlSpConfig
impl RefUnwindSafe for SamlSpConfig
impl Send for SamlSpConfig
impl Sync for SamlSpConfig
impl Unpin for SamlSpConfig
impl UnwindSafe for SamlSpConfig
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