pub struct UnlinkPersonaResponse {
pub unlinked: Option<bool>,
}Expand description
Response for the UnlinkPersona RPC
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- unlink persona recall (response)
Fields§
§unlinked: Option<bool>Required. Whether a Recall token specified by the request was deleted. Can be ‘false’ when there were no Recall tokens satisfied the criteria from the request.
Trait Implementations§
Source§impl Clone for UnlinkPersonaResponse
impl Clone for UnlinkPersonaResponse
Source§fn clone(&self) -> UnlinkPersonaResponse
fn clone(&self) -> UnlinkPersonaResponse
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 UnlinkPersonaResponse
impl Debug for UnlinkPersonaResponse
Source§impl Default for UnlinkPersonaResponse
impl Default for UnlinkPersonaResponse
Source§fn default() -> UnlinkPersonaResponse
fn default() -> UnlinkPersonaResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnlinkPersonaResponse
impl<'de> Deserialize<'de> for UnlinkPersonaResponse
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 Serialize for UnlinkPersonaResponse
impl Serialize for UnlinkPersonaResponse
impl ResponseResult for UnlinkPersonaResponse
Auto Trait Implementations§
impl Freeze for UnlinkPersonaResponse
impl RefUnwindSafe for UnlinkPersonaResponse
impl Send for UnlinkPersonaResponse
impl Sync for UnlinkPersonaResponse
impl Unpin for UnlinkPersonaResponse
impl UnwindSafe for UnlinkPersonaResponse
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