pub struct ListCheckRunsForGitSha<'a> { /* private fields */ }
Expand description
List the check runs for a Git reference
Lists check runs for a commit ref. GitHub Apps must have the checks:read
permission on a
private repository or pull access to a public repository to get check runs. OAuth Apps and
authenticated users must have the repo
scope to get check runs in a private repository.
https://docs.github.com/en/rest/checks/runs#list-check-runs-in-a-check-suite
Implementations§
Source§impl<'a> ListCheckRunsForGitSha<'a>
impl<'a> ListCheckRunsForGitSha<'a>
Trait Implementations§
Source§impl<'a> Clone for ListCheckRunsForGitSha<'a>
impl<'a> Clone for ListCheckRunsForGitSha<'a>
Source§fn clone(&self) -> ListCheckRunsForGitSha<'a>
fn clone(&self) -> ListCheckRunsForGitSha<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for ListCheckRunsForGitSha<'a>
impl<'a> Debug for ListCheckRunsForGitSha<'a>
impl<'a> Copy for ListCheckRunsForGitSha<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListCheckRunsForGitSha<'a>
impl<'a> !RefUnwindSafe for ListCheckRunsForGitSha<'a>
impl<'a> Send for ListCheckRunsForGitSha<'a>
impl<'a> Sync for ListCheckRunsForGitSha<'a>
impl<'a> Unpin for ListCheckRunsForGitSha<'a>
impl<'a> !UnwindSafe for ListCheckRunsForGitSha<'a>
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