Struct ory_client::models::identity_patch::IdentityPatch
source · 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 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 IdentityPatch
impl Debug for IdentityPatch
source§impl Default for IdentityPatch
impl Default for IdentityPatch
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<IdentityPatch> for IdentityPatch
impl PartialEq<IdentityPatch> for IdentityPatch
source§fn eq(&self, other: &IdentityPatch) -> bool
fn eq(&self, other: &IdentityPatch) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for IdentityPatch
impl Serialize for IdentityPatch
impl StructuralPartialEq for IdentityPatch
Auto Trait Implementations§
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