pub struct MutationResponse {
pub channel: String,
pub message_serial: String,
pub action: MessageAction,
pub accepted: bool,
pub version_serial: Option<String>,
pub status: String,
}Fields§
§channel: String§message_serial: String§action: MessageAction§accepted: bool§version_serial: Option<String>§status: StringTrait 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 (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 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
Source§impl PartialEq for MutationResponse
impl PartialEq for MutationResponse
Source§fn eq(&self, other: &MutationResponse) -> bool
fn eq(&self, other: &MutationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MutationResponse
impl Serialize for MutationResponse
impl StructuralPartialEq for MutationResponse
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