pub struct MutationResponse {
pub message: String,
pub ok: bool,
}Expand description
MutationResponse
JSON schema
{
"type": "object",
"required": [
"message",
"ok"
],
"properties": {
"message": {
"type": "string"
},
"ok": {
"type": "boolean"
}
}
}Fields§
§message: String§ok: boolTrait Implementations§
Source§impl Clone for MutationResponse
impl Clone for MutationResponse
Source§fn clone(&self) -> MutationResponse
fn clone(&self) -> MutationResponse
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 MutationResponse
impl Debug for MutationResponse
Source§impl<'de> Deserialize<'de> for MutationResponse
impl<'de> Deserialize<'de> for MutationResponse
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
Auto Trait Implementations§
impl Freeze for MutationResponse
impl RefUnwindSafe for MutationResponse
impl Send for MutationResponse
impl Sync for MutationResponse
impl Unpin for MutationResponse
impl UnsafeUnpin for MutationResponse
impl UnwindSafe for MutationResponse
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