pub enum ScimPatchOperationOp {
Add,
Replace,
Remove,
Unknown(String),
}Expand description
Inline enum for ScimPatchOperation.op.
Variants§
Trait Implementations§
Source§impl Clone for ScimPatchOperationOp
impl Clone for ScimPatchOperationOp
Source§fn clone(&self) -> ScimPatchOperationOp
fn clone(&self) -> ScimPatchOperationOp
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 ScimPatchOperationOp
impl Debug for ScimPatchOperationOp
Source§impl Default for ScimPatchOperationOp
impl Default for ScimPatchOperationOp
Source§fn default() -> ScimPatchOperationOp
fn default() -> ScimPatchOperationOp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScimPatchOperationOp
impl<'de> Deserialize<'de> for ScimPatchOperationOp
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 Display for ScimPatchOperationOp
impl Display for ScimPatchOperationOp
Source§impl PartialEq for ScimPatchOperationOp
impl PartialEq for ScimPatchOperationOp
Source§fn eq(&self, other: &ScimPatchOperationOp) -> bool
fn eq(&self, other: &ScimPatchOperationOp) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScimPatchOperationOp
impl Serialize for ScimPatchOperationOp
impl StructuralPartialEq for ScimPatchOperationOp
Auto Trait Implementations§
impl Freeze for ScimPatchOperationOp
impl RefUnwindSafe for ScimPatchOperationOp
impl Send for ScimPatchOperationOp
impl Sync for ScimPatchOperationOp
impl Unpin for ScimPatchOperationOp
impl UnsafeUnpin for ScimPatchOperationOp
impl UnwindSafe for ScimPatchOperationOp
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