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