pub struct TaskCommentMutationResponse {
pub comment: Box<TaskComment>,
pub success: bool,
}Fields§
§comment: Box<TaskComment>§success: boolImplementations§
Source§impl TaskCommentMutationResponse
impl TaskCommentMutationResponse
pub fn new(comment: TaskComment, success: bool) -> TaskCommentMutationResponse
Trait Implementations§
Source§impl Clone for TaskCommentMutationResponse
impl Clone for TaskCommentMutationResponse
Source§fn clone(&self) -> TaskCommentMutationResponse
fn clone(&self) -> TaskCommentMutationResponse
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 TaskCommentMutationResponse
impl Debug for TaskCommentMutationResponse
Source§impl Default for TaskCommentMutationResponse
impl Default for TaskCommentMutationResponse
Source§fn default() -> TaskCommentMutationResponse
fn default() -> TaskCommentMutationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskCommentMutationResponse
impl<'de> Deserialize<'de> for TaskCommentMutationResponse
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 TaskCommentMutationResponse
impl PartialEq for TaskCommentMutationResponse
Source§fn eq(&self, other: &TaskCommentMutationResponse) -> bool
fn eq(&self, other: &TaskCommentMutationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TaskCommentMutationResponse
Auto Trait Implementations§
impl Freeze for TaskCommentMutationResponse
impl RefUnwindSafe for TaskCommentMutationResponse
impl Send for TaskCommentMutationResponse
impl Sync for TaskCommentMutationResponse
impl Unpin for TaskCommentMutationResponse
impl UnsafeUnpin for TaskCommentMutationResponse
impl UnwindSafe for TaskCommentMutationResponse
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