pub struct IdentityPatchResponse {
pub action: Option<ActionEnum>,
pub identity: Option<String>,
pub patch_id: Option<String>,
}Expand description
IdentityPatchResponse : Response for a single identity patch
Fields§
§action: Option<ActionEnum>The action for this specific patch create ActionCreate Create this identity.
identity: Option<String>The identity ID payload of this patch
patch_id: Option<String>The ID of this patch response, if an ID was specified in the patch.
Implementations§
source§impl IdentityPatchResponse
impl IdentityPatchResponse
sourcepub fn new() -> IdentityPatchResponse
pub fn new() -> IdentityPatchResponse
Response for a single identity patch
Trait Implementations§
source§impl Clone for IdentityPatchResponse
impl Clone for IdentityPatchResponse
source§fn clone(&self) -> IdentityPatchResponse
fn clone(&self) -> IdentityPatchResponse
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 IdentityPatchResponse
impl Debug for IdentityPatchResponse
source§impl Default for IdentityPatchResponse
impl Default for IdentityPatchResponse
source§impl<'de> Deserialize<'de> for IdentityPatchResponse
impl<'de> Deserialize<'de> for IdentityPatchResponse
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<IdentityPatchResponse> for IdentityPatchResponse
impl PartialEq<IdentityPatchResponse> for IdentityPatchResponse
source§fn eq(&self, other: &IdentityPatchResponse) -> bool
fn eq(&self, other: &IdentityPatchResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for IdentityPatchResponse
impl Serialize for IdentityPatchResponse
impl StructuralPartialEq for IdentityPatchResponse
Auto Trait Implementations§
impl RefUnwindSafe for IdentityPatchResponse
impl Send for IdentityPatchResponse
impl Sync for IdentityPatchResponse
impl Unpin for IdentityPatchResponse
impl UnwindSafe for IdentityPatchResponse
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