pub struct IssueSearchIssuesQuery {Show 16 fields
pub state: Option<IssueSearchIssuesQueryState>,
pub labels: Option<String>,
pub milestones: Option<String>,
pub q: Option<String>,
pub priority_repo_id: Option<i64>,
pub type: Option<IssueSearchIssuesQueryType>,
pub since: Option<OffsetDateTime>,
pub before: Option<OffsetDateTime>,
pub assigned: Option<bool>,
pub created: Option<bool>,
pub mentioned: Option<bool>,
pub review_requested: Option<bool>,
pub reviewed: Option<bool>,
pub owner: Option<String>,
pub team: Option<String>,
pub sort: Option<IssueSearchIssuesQuerySort>,
}Fields§
§state: Option<IssueSearchIssuesQueryState>State of the issue
labels: Option<String>Comma-separated list of label names. Fetch only issues that have any of these labels. Non existent labels are discarded.
milestones: Option<String>Comma-separated list of milestone names. Fetch only issues that have any of these milestones. Non existent milestones are discarded.
q: Option<String>Search string
priority_repo_id: Option<i64>Repository ID to prioritize in the results
type: Option<IssueSearchIssuesQueryType>Filter by issue type
since: Option<OffsetDateTime>Only show issues updated after the given time (RFC 3339 format)
before: Option<OffsetDateTime>Only show issues updated before the given time (RFC 3339 format)
assigned: Option<bool>Filter issues or pulls assigned to the authenticated user
created: Option<bool>Filter issues or pulls created by the authenticated user
mentioned: Option<bool>Filter issues or pulls mentioning the authenticated user
review_requested: Option<bool>Filter pull requests where the authenticated user’s review was requested
reviewed: Option<bool>Filter pull requests reviewed by the authenticated user
owner: Option<String>Filter by repository owner
team: Option<String>Filter by team (requires organization owner parameter)
sort: Option<IssueSearchIssuesQuerySort>Type of sort
Trait Implementations§
Source§impl Clone for IssueSearchIssuesQuery
impl Clone for IssueSearchIssuesQuery
Source§fn clone(&self) -> IssueSearchIssuesQuery
fn clone(&self) -> IssueSearchIssuesQuery
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more