pub struct SamlSubject {
pub name_id: SamlNameId,
pub subject_confirmation: Option<SamlSubjectConfirmation>,
}Expand description
SAML 主题
Fields§
§name_id: SamlNameId名称 ID
subject_confirmation: Option<SamlSubjectConfirmation>主题确认
Trait Implementations§
Source§impl Clone for SamlSubject
impl Clone for SamlSubject
Source§fn clone(&self) -> SamlSubject
fn clone(&self) -> SamlSubject
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 SamlSubject
impl Debug for SamlSubject
Source§impl<'de> Deserialize<'de> for SamlSubject
impl<'de> Deserialize<'de> for SamlSubject
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 SamlSubject
impl RefUnwindSafe for SamlSubject
impl Send for SamlSubject
impl Sync for SamlSubject
impl Unpin for SamlSubject
impl UnsafeUnpin for SamlSubject
impl UnwindSafe for SamlSubject
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