pub struct AzureIssueClient { /* private fields */ }Implementations§
Trait Implementations§
Source§impl IssueClient for AzureIssueClient
impl IssueClient for AzureIssueClient
fn list(&self, owner: &str, _repo: &str, state: &str) -> Result<Vec<Issue>>
fn create( &self, owner: &str, _repo: &str, opts: CreateIssueOptions, ) -> Result<Issue>
fn close(&self, owner: &str, _repo: &str, number: u64) -> Result<()>
fn comment( &self, owner: &str, _repo: &str, number: u64, body: &str, ) -> Result<()>
Auto Trait Implementations§
impl Freeze for AzureIssueClient
impl RefUnwindSafe for AzureIssueClient
impl Send for AzureIssueClient
impl Sync for AzureIssueClient
impl Unpin for AzureIssueClient
impl UnsafeUnpin for AzureIssueClient
impl UnwindSafe for AzureIssueClient
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