pub struct Jira { /* private fields */ }
Expand description
Entrypoint into client interface https://docs.atlassian.com/jira/REST/latest/
Implementations§
Source§impl Jira
impl Jira
Sourcepub fn new<H>(host: H, credentials: Credentials) -> Result<Jira>
pub fn new<H>(host: H, credentials: Credentials) -> Result<Jira>
creates a new instance of a jira client
Sourcepub fn from_client<H>(
host: H,
credentials: Credentials,
client: Client,
) -> Result<Jira>
pub fn from_client<H>( host: H, credentials: Credentials, client: Client, ) -> Result<Jira>
creates a new instance of a jira client using a specified reqwest client
Sourcepub fn transitions<K>(&self, key: K) -> Transitions
pub fn transitions<K>(&self, key: K) -> Transitions
return transitions interface
pub fn issues(&self) -> Issues
pub fn boards(&self) -> Boards
pub fn sprints(&self) -> Sprints
pub fn worklogs(&self) -> Worklogs
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Jira
impl !RefUnwindSafe for Jira
impl Send for Jira
impl Sync for Jira
impl Unpin for Jira
impl !UnwindSafe for Jira
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