pub struct IdentityPatchResponse {
pub action: Option<ActionEnum>,
pub error: Option<Option<Value>>,
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. error ActionError Error indicates that the patch failed.
error: Option<Option<Value>>§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 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 IdentityPatchResponse
impl Debug for IdentityPatchResponse
Source§impl Default for IdentityPatchResponse
impl Default for IdentityPatchResponse
Source§fn default() -> IdentityPatchResponse
fn default() -> IdentityPatchResponse
Returns the “default value” for a type. Read more
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 for IdentityPatchResponse
impl PartialEq for IdentityPatchResponse
Source§impl Serialize for IdentityPatchResponse
impl Serialize for IdentityPatchResponse
impl StructuralPartialEq for IdentityPatchResponse
Auto Trait Implementations§
impl Freeze for IdentityPatchResponse
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