pub struct CommentMutation {
pub success: bool,
pub comment: Option<Comment>,
}Fields§
§success: bool§comment: Option<Comment>Trait Implementations§
Source§impl Clone for CommentMutation
impl Clone for CommentMutation
Source§fn clone(&self) -> CommentMutation
fn clone(&self) -> CommentMutation
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 CommentMutation
impl Debug for CommentMutation
Source§impl<'de> Deserialize<'de> for CommentMutation
impl<'de> Deserialize<'de> for CommentMutation
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 CommentMutation
impl PartialEq for CommentMutation
Source§impl Serialize for CommentMutation
impl Serialize for CommentMutation
impl StructuralPartialEq for CommentMutation
Auto Trait Implementations§
impl Freeze for CommentMutation
impl RefUnwindSafe for CommentMutation
impl Send for CommentMutation
impl Sync for CommentMutation
impl Unpin for CommentMutation
impl UnsafeUnpin for CommentMutation
impl UnwindSafe for CommentMutation
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