pub struct SamlConfig {
pub configured: bool,
pub enabled: bool,
pub idp_entity_id: Option<String>,
pub single_sign_on_service_url: Option<String>,
pub name_id_format: String,
pub sp_entity_id: String,
pub acs_url: String,
}Fields§
§configured: bool§enabled: bool§idp_entity_id: Option<String>§single_sign_on_service_url: Option<String>§name_id_format: String§sp_entity_id: String§acs_url: StringImplementations§
Trait Implementations§
Source§impl Clone for SamlConfig
impl Clone for SamlConfig
Source§fn clone(&self) -> SamlConfig
fn clone(&self) -> SamlConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SamlConfig
impl Debug for SamlConfig
Source§impl Default for SamlConfig
impl Default for SamlConfig
Source§fn default() -> SamlConfig
fn default() -> SamlConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SamlConfig
impl<'de> Deserialize<'de> for SamlConfig
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 PartialEq for SamlConfig
impl PartialEq for SamlConfig
Source§impl Serialize for SamlConfig
impl Serialize for SamlConfig
impl StructuralPartialEq for SamlConfig
Auto Trait Implementations§
impl Freeze for SamlConfig
impl RefUnwindSafe for SamlConfig
impl Send for SamlConfig
impl Sync for SamlConfig
impl Unpin for SamlConfig
impl UnsafeUnpin for SamlConfig
impl UnwindSafe for SamlConfig
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