pub struct CommentCreateInput {
pub issue_id: String,
pub body: Option<String>,
pub parent_id: Option<String>,
}Fields§
§issue_id: String§body: Option<String>§parent_id: Option<String>Trait Implementations§
Source§impl Clone for CommentCreateInput
impl Clone for CommentCreateInput
Source§fn clone(&self) -> CommentCreateInput
fn clone(&self) -> CommentCreateInput
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 CommentCreateInput
impl Debug for CommentCreateInput
Source§impl Default for CommentCreateInput
impl Default for CommentCreateInput
Source§fn default() -> CommentCreateInput
fn default() -> CommentCreateInput
Returns the “default value” for a type. Read more
Source§impl InputObject for CommentCreateInput
impl InputObject for CommentCreateInput
Source§type SchemaType = CommentCreateInput
type SchemaType = CommentCreateInput
The input object in the schema that this type represents.
Source§impl Serialize for CommentCreateInput
impl Serialize for CommentCreateInput
Source§impl Variable for CommentCreateInput
impl Variable for CommentCreateInput
const TYPE: VariableType
impl CoercesTo<CommentCreateInput> for CommentCreateInput
impl CoercesTo<Option<CommentCreateInput>> for CommentCreateInput
impl CoercesTo<Option<Option<CommentCreateInput>>> for CommentCreateInput
impl CoercesTo<Option<Vec<CommentCreateInput>>> for CommentCreateInput
impl CoercesTo<Option<Vec<Option<CommentCreateInput>>>> for CommentCreateInput
impl CoercesTo<Vec<CommentCreateInput>> for CommentCreateInput
impl CoercesTo<Vec<Vec<CommentCreateInput>>> for CommentCreateInput
Auto Trait Implementations§
impl Freeze for CommentCreateInput
impl RefUnwindSafe for CommentCreateInput
impl Send for CommentCreateInput
impl Sync for CommentCreateInput
impl Unpin for CommentCreateInput
impl UnwindSafe for CommentCreateInput
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