pub struct IssueSearchIssuesQuery {Show 17 fields
pub state: Option<IssueSearchIssuesQueryState>,
pub labels: Option<String>,
pub milestones: Option<String>,
pub q: Option<String>,
pub priority_repo_id: Option<u64>,
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 page: Option<u32>,
pub limit: Option<u32>,
}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<u64>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)
page: Option<u32>Page number of results to return (1-based)
limit: Option<u32>Number of items per page
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 moreSource§impl Debug for IssueSearchIssuesQuery
impl Debug for IssueSearchIssuesQuery
Source§impl Default for IssueSearchIssuesQuery
impl Default for IssueSearchIssuesQuery
Source§fn default() -> IssueSearchIssuesQuery
fn default() -> IssueSearchIssuesQuery
Source§impl Display for IssueSearchIssuesQuery
impl Display for IssueSearchIssuesQuery
Source§impl PartialEq for IssueSearchIssuesQuery
impl PartialEq for IssueSearchIssuesQuery
impl StructuralPartialEq for IssueSearchIssuesQuery
Auto Trait Implementations§
impl Freeze for IssueSearchIssuesQuery
impl RefUnwindSafe for IssueSearchIssuesQuery
impl Send for IssueSearchIssuesQuery
impl Sync for IssueSearchIssuesQuery
impl Unpin for IssueSearchIssuesQuery
impl UnwindSafe for IssueSearchIssuesQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.