pub struct GitHub { /* private fields */ }Implementations§
Trait Implementations§
Source§impl GitHubApi for GitHub
impl GitHubApi for GitHub
fn app_slug(&self) -> String
fn create_issue_comment( &self, owner: &str, repo: &str, issue_id: i64, body: &str, ) -> Result<(), GithubError>
fn list_issue_comments( &self, owner: &str, repo: &str, issue_id: i64, ) -> Result<Vec<Comment>, GithubError>
fn update_issue_comment( &self, owner: &str, repo: &str, comment_id: i64, body: &str, ) -> Result<(), GithubError>
Auto Trait Implementations§
impl Freeze for GitHub
impl RefUnwindSafe for GitHub
impl Send for GitHub
impl Sync for GitHub
impl Unpin for GitHub
impl UnsafeUnpin for GitHub
impl UnwindSafe for GitHub
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