[][src]Struct hubcaps::search::SearchIssues

pub struct SearchIssues { /* fields omitted */ }

Provides access to issue search operations https://developer.github.com/v3/search/#search-issues

Implementations

impl SearchIssues[src]

pub fn iter<Q>(&self, q: Q, options: &SearchIssuesOptions) -> Stream<IssuesItem> where
    Q: Into<String>, 
[src]

Return a stream of search results repository query See github docs for query format options

pub fn list<Q>(
    &self,
    q: Q,
    options: &SearchIssuesOptions
) -> Future<SearchResult<IssuesItem>> where
    Q: Into<String>, 
[src]

Return the first page of search result repository query See github docs for query format options

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.