pub struct SamlAttributeStatement {
pub attributes: Vec<SamlAttribute>,
}Expand description
SAML 属性声明
Fields§
§attributes: Vec<SamlAttribute>属性列表
Implementations§
Trait Implementations§
Source§impl Clone for SamlAttributeStatement
impl Clone for SamlAttributeStatement
Source§fn clone(&self) -> SamlAttributeStatement
fn clone(&self) -> SamlAttributeStatement
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 SamlAttributeStatement
impl Debug for SamlAttributeStatement
Source§impl<'de> Deserialize<'de> for SamlAttributeStatement
impl<'de> Deserialize<'de> for SamlAttributeStatement
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 SamlAttributeStatement
impl RefUnwindSafe for SamlAttributeStatement
impl Send for SamlAttributeStatement
impl Sync for SamlAttributeStatement
impl Unpin for SamlAttributeStatement
impl UnsafeUnpin for SamlAttributeStatement
impl UnwindSafe for SamlAttributeStatement
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