pub struct IssueCommentsArguments {
pub id: String,
pub first: Option<i32>,
pub after: Option<String>,
}Fields§
§id: String§first: Option<i32>§after: Option<String>Trait Implementations§
Source§impl Clone for IssueCommentsArguments
impl Clone for IssueCommentsArguments
Source§fn clone(&self) -> IssueCommentsArguments
fn clone(&self) -> IssueCommentsArguments
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 IssueCommentsArguments
impl Debug for IssueCommentsArguments
Source§impl QueryVariables for IssueCommentsArguments
impl QueryVariables for IssueCommentsArguments
Source§const VARIABLES: &'static [(&'static str, VariableType)]
const VARIABLES: &'static [(&'static str, VariableType)]
An associated constant that contains the variable names & their types. Read more
Source§type Fields = IssueCommentsArgumentsFields
type Fields = IssueCommentsArgumentsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for IssueCommentsArguments
impl RefUnwindSafe for IssueCommentsArguments
impl Send for IssueCommentsArguments
impl Sync for IssueCommentsArguments
impl Unpin for IssueCommentsArguments
impl UnsafeUnpin for IssueCommentsArguments
impl UnwindSafe for IssueCommentsArguments
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