pub struct SamlConnection {Show 15 fields
pub object: Object,
pub id: String,
pub name: String,
pub domain: String,
pub idp_entity_id: Option<String>,
pub idp_sso_url: Option<String>,
pub idp_certificate: Option<String>,
pub acs_url: String,
pub sp_entity_id: String,
pub active: bool,
pub provider: String,
pub user_count: i64,
pub sync_user_attributes: bool,
pub created_at: i64,
pub updated_at: i64,
}Fields§
§object: Object§id: String§name: String§domain: String§idp_entity_id: Option<String>§idp_sso_url: Option<String>§idp_certificate: Option<String>§acs_url: String§sp_entity_id: String§active: bool§provider: String§user_count: i64§sync_user_attributes: bool§created_at: i64Unix timestamp of creation.
updated_at: i64Unix timestamp of last update.
Implementations§
Source§impl SamlConnection
impl SamlConnection
pub fn new( object: Object, id: String, name: String, domain: String, idp_entity_id: Option<String>, idp_sso_url: Option<String>, idp_certificate: Option<String>, acs_url: String, sp_entity_id: String, active: bool, provider: String, user_count: i64, sync_user_attributes: bool, created_at: i64, updated_at: i64, ) -> SamlConnection
Trait Implementations§
Source§impl Clone for SamlConnection
impl Clone for SamlConnection
Source§fn clone(&self) -> SamlConnection
fn clone(&self) -> SamlConnection
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 SamlConnection
impl Debug for SamlConnection
Source§impl<'de> Deserialize<'de> for SamlConnection
impl<'de> Deserialize<'de> for SamlConnection
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 SamlConnection
impl PartialEq for SamlConnection
Source§impl Serialize for SamlConnection
impl Serialize for SamlConnection
impl StructuralPartialEq for SamlConnection
Auto Trait Implementations§
impl Freeze for SamlConnection
impl RefUnwindSafe for SamlConnection
impl Send for SamlConnection
impl Sync for SamlConnection
impl Unpin for SamlConnection
impl UnwindSafe for SamlConnection
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