pub struct SamlAuthnStatement {
pub authn_instant: DateTime<Utc>,
pub session_index: Option<String>,
pub session_not_on_or_after: Option<DateTime<Utc>>,
pub authn_context: SamlAuthnContext,
}Expand description
SAML 认证声明
Fields§
§authn_instant: DateTime<Utc>认证时间
session_index: Option<String>会话索引
session_not_on_or_after: Option<DateTime<Utc>>会话过期时间
authn_context: SamlAuthnContext认证上下文
Trait Implementations§
Source§impl Clone for SamlAuthnStatement
impl Clone for SamlAuthnStatement
Source§fn clone(&self) -> SamlAuthnStatement
fn clone(&self) -> SamlAuthnStatement
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 SamlAuthnStatement
impl Debug for SamlAuthnStatement
Source§impl<'de> Deserialize<'de> for SamlAuthnStatement
impl<'de> Deserialize<'de> for SamlAuthnStatement
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
Auto Trait Implementations§
impl Freeze for SamlAuthnStatement
impl RefUnwindSafe for SamlAuthnStatement
impl Send for SamlAuthnStatement
impl Sync for SamlAuthnStatement
impl Unpin for SamlAuthnStatement
impl UnsafeUnpin for SamlAuthnStatement
impl UnwindSafe for SamlAuthnStatement
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