pub struct DeleteMeResponse {
pub ok: bool,
}Expand description
DeleteMeResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
}Fields§
§ok: boolImplementations§
Source§impl DeleteMeResponse
impl DeleteMeResponse
pub fn builder() -> DeleteMeResponse
Trait Implementations§
Source§impl Clone for DeleteMeResponse
impl Clone for DeleteMeResponse
Source§fn clone(&self) -> DeleteMeResponse
fn clone(&self) -> DeleteMeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeleteMeResponse
impl Debug for DeleteMeResponse
Source§impl<'de> Deserialize<'de> for DeleteMeResponse
impl<'de> Deserialize<'de> for DeleteMeResponse
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 From<&DeleteMeResponse> for DeleteMeResponse
impl From<&DeleteMeResponse> for DeleteMeResponse
Source§fn from(value: &DeleteMeResponse) -> Self
fn from(value: &DeleteMeResponse) -> Self
Converts to this type from the input type.
Source§impl From<DeleteMeResponse> for DeleteMeResponse
impl From<DeleteMeResponse> for DeleteMeResponse
Source§fn from(value: DeleteMeResponse) -> Self
fn from(value: DeleteMeResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for DeleteMeResponse
impl Serialize for DeleteMeResponse
Source§impl TryFrom<DeleteMeResponse> for DeleteMeResponse
impl TryFrom<DeleteMeResponse> for DeleteMeResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: DeleteMeResponse) -> Result<Self, ConversionError>
fn try_from(value: DeleteMeResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DeleteMeResponse
impl RefUnwindSafe for DeleteMeResponse
impl Send for DeleteMeResponse
impl Sync for DeleteMeResponse
impl Unpin for DeleteMeResponse
impl UnsafeUnpin for DeleteMeResponse
impl UnwindSafe for DeleteMeResponse
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