pub struct IdentityPatch {
pub create: Option<Box<CreateIdentityBody>>,
pub patch_id: Option<String>,
}Expand description
IdentityPatch : Payload for patching an identity
Fields§
§create: Option<Box<CreateIdentityBody>>§patch_id: Option<String>The ID of this patch. The patch ID is optional. If specified, the ID will be returned in the response, so consumers of this API can correlate the response with the patch.
Implementations§
Source§impl IdentityPatch
impl IdentityPatch
Sourcepub fn new() -> IdentityPatch
pub fn new() -> IdentityPatch
Payload for patching an identity
Trait Implementations§
Source§impl Clone for IdentityPatch
impl Clone for IdentityPatch
Source§fn clone(&self) -> IdentityPatch
fn clone(&self) -> IdentityPatch
Returns a duplicate 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 IdentityPatch
impl Debug for IdentityPatch
Source§impl Default for IdentityPatch
impl Default for IdentityPatch
Source§fn default() -> IdentityPatch
fn default() -> IdentityPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityPatch
impl<'de> Deserialize<'de> for IdentityPatch
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 IdentityPatch
impl PartialEq for IdentityPatch
Source§impl Serialize for IdentityPatch
impl Serialize for IdentityPatch
impl StructuralPartialEq for IdentityPatch
Auto Trait Implementations§
impl Freeze for IdentityPatch
impl RefUnwindSafe for IdentityPatch
impl Send for IdentityPatch
impl Sync for IdentityPatch
impl Unpin for IdentityPatch
impl UnwindSafe for IdentityPatch
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