pub struct ScimSchemaAttribute {
pub name: String,
pub type_: String,
pub multi_valued: bool,
pub description: String,
pub required: bool,
pub case_exact: Option<bool>,
pub mutability: Option<String>,
pub returned: Option<String>,
pub uniqueness: Option<String>,
pub sub_attributes: Vec<ScimSchemaAttribute>,
pub reference_types: Vec<String>,
}Fields§
§name: String§type_: String§multi_valued: bool§description: String§required: bool§case_exact: Option<bool>§mutability: Option<String>§returned: Option<String>§uniqueness: Option<String>§sub_attributes: Vec<ScimSchemaAttribute>§reference_types: Vec<String>Trait Implementations§
Source§impl Clone for ScimSchemaAttribute
impl Clone for ScimSchemaAttribute
Source§fn clone(&self) -> ScimSchemaAttribute
fn clone(&self) -> ScimSchemaAttribute
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 ScimSchemaAttribute
impl Debug for ScimSchemaAttribute
Source§impl<'de> Deserialize<'de> for ScimSchemaAttribute
impl<'de> Deserialize<'de> for ScimSchemaAttribute
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
impl Eq for ScimSchemaAttribute
Source§impl PartialEq for ScimSchemaAttribute
impl PartialEq for ScimSchemaAttribute
Source§fn eq(&self, other: &ScimSchemaAttribute) -> bool
fn eq(&self, other: &ScimSchemaAttribute) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScimSchemaAttribute
impl Serialize for ScimSchemaAttribute
impl StructuralPartialEq for ScimSchemaAttribute
Auto Trait Implementations§
impl Freeze for ScimSchemaAttribute
impl RefUnwindSafe for ScimSchemaAttribute
impl Send for ScimSchemaAttribute
impl Sync for ScimSchemaAttribute
impl Unpin for ScimSchemaAttribute
impl UnsafeUnpin for ScimSchemaAttribute
impl UnwindSafe for ScimSchemaAttribute
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.