pub enum ScimSyncRetentionMode {
Ignore,
Retain(Vec<Uuid>),
Delete(Vec<Uuid>),
}
Variants§
Ignore
No actions are to be taken - only update or create entries in the entries set.
Retain(Vec<Uuid>)
All entries that have their uuid present in this set are retained. Anything not present will be deleted.
Delete(Vec<Uuid>)
Any entry with its UUID in this set will be deleted. Anything not present will be retained.
Trait Implementations§
source§impl Clone for ScimSyncRetentionMode
impl Clone for ScimSyncRetentionMode
source§fn clone(&self) -> ScimSyncRetentionMode
fn clone(&self) -> ScimSyncRetentionMode
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 ScimSyncRetentionMode
impl Debug for ScimSyncRetentionMode
source§impl<'de> Deserialize<'de> for ScimSyncRetentionMode
impl<'de> Deserialize<'de> for ScimSyncRetentionMode
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 ScimSyncRetentionMode
impl PartialEq for ScimSyncRetentionMode
source§impl Serialize for ScimSyncRetentionMode
impl Serialize for ScimSyncRetentionMode
source§impl<'__s> ToSchema<'__s> for ScimSyncRetentionMode
impl<'__s> ToSchema<'__s> for ScimSyncRetentionMode
impl Eq for ScimSyncRetentionMode
impl StructuralPartialEq for ScimSyncRetentionMode
Auto Trait Implementations§
impl Freeze for ScimSyncRetentionMode
impl RefUnwindSafe for ScimSyncRetentionMode
impl Send for ScimSyncRetentionMode
impl Sync for ScimSyncRetentionMode
impl Unpin for ScimSyncRetentionMode
impl UnwindSafe for ScimSyncRetentionMode
Blanket Implementations§
§impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
§impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.