pub struct ScimEntryPutGeneric {
pub id: Uuid,
pub query: ScimEntryGetQuery,
pub attrs: BTreeMap<Attribute, Option<Value>>,
}
Fields§
§id: Uuid
§query: ScimEntryGetQuery
Non-standard extension - allow query options to be set in a put request. This is because a put request also returns the entry state post put, so we want to allow putters to adjust and control what is returned here.
attrs: BTreeMap<Attribute, Option<Value>>
Update an attribute to contain the following value state. If the attribute is None, it is removed.
Trait Implementations§
Source§impl Clone for ScimEntryPutGeneric
impl Clone for ScimEntryPutGeneric
Source§fn clone(&self) -> ScimEntryPutGeneric
fn clone(&self) -> ScimEntryPutGeneric
Returns a copy 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 ScimEntryPutGeneric
impl Debug for ScimEntryPutGeneric
Source§impl Default for ScimEntryPutGeneric
impl Default for ScimEntryPutGeneric
Source§fn default() -> ScimEntryPutGeneric
fn default() -> ScimEntryPutGeneric
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScimEntryPutGeneric
impl<'de> Deserialize<'de> for ScimEntryPutGeneric
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 ScimEntryPutGeneric
impl RefUnwindSafe for ScimEntryPutGeneric
impl Send for ScimEntryPutGeneric
impl Sync for ScimEntryPutGeneric
impl Unpin for ScimEntryPutGeneric
impl UnwindSafe for ScimEntryPutGeneric
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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