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