Struct goji::Search [−][src]
pub struct Search { /* fields omitted */ }Search interface
Methods
impl Search[src]
impl Searchpub fn new(jira: &Jira) -> Search[src]
pub fn new(jira: &Jira) -> Searchpub fn list<J>(&self, jql: J, options: &SearchOptions) -> Result<SearchResults> where
J: Into<String>, [src]
pub fn list<J>(&self, jql: J, options: &SearchOptions) -> Result<SearchResults> where
J: Into<String>, Returns a single page of search results
See the jira docs for more information
pub fn iter<'a, J>(
&self,
jql: J,
options: &'a SearchOptions
) -> Result<Iter<'a>> where
J: Into<String>, [src]
pub fn iter<'a, J>(
&self,
jql: J,
options: &'a SearchOptions
) -> Result<Iter<'a>> where
J: Into<String>, Return a type which may be used to iterate over consecutive pages of results
See the jira docs for more information