pub struct Issues { /* private fields */ }
Expand description
issue options
Implementations§
Source§impl Issues
impl Issues
pub fn new(jira: &Jira) -> Issues
pub fn get<I>(&self, id: I) -> Result<Issue>
pub fn create(&self, data: CreateIssue) -> Result<CreateResponse>
Sourcepub fn list(
&self,
board: &Board,
options: &SearchOptions,
) -> Result<IssueResults>
pub fn list( &self, board: &Board, options: &SearchOptions, ) -> Result<IssueResults>
returns a single page of issues results https://docs.atlassian.com/jira-software/REST/latest/#agile/1.0/board-getIssuesForBoard
Sourcepub fn iter<'a>(
&self,
board: &'a Board,
options: &'a SearchOptions,
) -> Result<IssuesIter<'a>>
pub fn iter<'a>( &self, board: &'a Board, options: &'a SearchOptions, ) -> Result<IssuesIter<'a>>
runs a type why may be used to iterate over consecutive pages of results https://docs.atlassian.com/jira-software/REST/latest/#agile/1.0/board-getIssuesForBoard
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Issues
impl !RefUnwindSafe for Issues
impl Send for Issues
impl Sync for Issues
impl Unpin for Issues
impl !UnwindSafe for Issues
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