pub struct SearchIssuesArguments {
pub term: String,
pub include_comments: Option<bool>,
pub first: Option<i32>,
pub after: Option<String>,
pub filter: Option<IssueFilter>,
}Fields§
§term: String§include_comments: Option<bool>§first: Option<i32>§after: Option<String>§filter: Option<IssueFilter>Trait Implementations§
Source§impl Clone for SearchIssuesArguments
impl Clone for SearchIssuesArguments
Source§fn clone(&self) -> SearchIssuesArguments
fn clone(&self) -> SearchIssuesArguments
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 SearchIssuesArguments
impl Debug for SearchIssuesArguments
Source§impl QueryVariables for SearchIssuesArguments
impl QueryVariables for SearchIssuesArguments
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 = SearchIssuesArgumentsFields
type Fields = SearchIssuesArgumentsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for SearchIssuesArguments
impl RefUnwindSafe for SearchIssuesArguments
impl Send for SearchIssuesArguments
impl Sync for SearchIssuesArguments
impl Unpin for SearchIssuesArguments
impl UnwindSafe for SearchIssuesArguments
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