pub struct SamlSubjectConfirmationData {
pub recipient: Option<String>,
pub not_on_or_after: Option<DateTime<Utc>>,
pub not_before: Option<DateTime<Utc>>,
pub in_response_to: Option<String>,
}Expand description
SAML 主题确认数据
Fields§
§recipient: Option<String>接收者
not_on_or_after: Option<DateTime<Utc>>响应时间
not_before: Option<DateTime<Utc>>生效时间
in_response_to: Option<String>请求 ID
Trait Implementations§
Source§impl Clone for SamlSubjectConfirmationData
impl Clone for SamlSubjectConfirmationData
Source§fn clone(&self) -> SamlSubjectConfirmationData
fn clone(&self) -> SamlSubjectConfirmationData
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 SamlSubjectConfirmationData
impl Debug for SamlSubjectConfirmationData
Source§impl<'de> Deserialize<'de> for SamlSubjectConfirmationData
impl<'de> Deserialize<'de> for SamlSubjectConfirmationData
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 SamlSubjectConfirmationData
impl RefUnwindSafe for SamlSubjectConfirmationData
impl Send for SamlSubjectConfirmationData
impl Sync for SamlSubjectConfirmationData
impl Unpin for SamlSubjectConfirmationData
impl UnsafeUnpin for SamlSubjectConfirmationData
impl UnwindSafe for SamlSubjectConfirmationData
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