pub struct SamlAttribute {
pub name: Option<String>,
pub values: Option<Vec<String>>,
}Fields§
§name: Option<String>§values: Option<Vec<String>>Implementations§
Source§impl SamlAttribute
impl SamlAttribute
pub fn new() -> SamlAttribute
Trait Implementations§
Source§impl Clone for SamlAttribute
impl Clone for SamlAttribute
Source§fn clone(&self) -> SamlAttribute
fn clone(&self) -> SamlAttribute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SamlAttribute
impl Debug for SamlAttribute
Source§impl Default for SamlAttribute
impl Default for SamlAttribute
Source§fn default() -> SamlAttribute
fn default() -> SamlAttribute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SamlAttribute
impl<'de> Deserialize<'de> for SamlAttribute
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 SamlAttribute
impl PartialEq for SamlAttribute
Source§fn eq(&self, other: &SamlAttribute) -> bool
fn eq(&self, other: &SamlAttribute) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SamlAttribute
impl Serialize for SamlAttribute
impl StructuralPartialEq for SamlAttribute
Auto Trait Implementations§
impl Freeze for SamlAttribute
impl RefUnwindSafe for SamlAttribute
impl Send for SamlAttribute
impl Sync for SamlAttribute
impl Unpin for SamlAttribute
impl UnsafeUnpin for SamlAttribute
impl UnwindSafe for SamlAttribute
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