pub struct ListCheckSuites<'a> { /* private fields */ }
Expand description
List the check suites for a Git reference
Lists check suites for a commit ref
. GitHub Apps must have the checks:read
permission on a
private repository or pull access to a public repository to list check suites. OAuth Apps and
authenticated users must have the repo
scope to get check suites in a private repository.
https://docs.github.com/en/rest/checks/suites#list-check-suites-for-a-git-reference
Implementations§
Source§impl<'a> ListCheckSuites<'a>
impl<'a> ListCheckSuites<'a>
Sourcepub fn new(
github_client: &'a GitHubClient,
owner: &'a Login,
repository: &'a RepositoryName,
git_sha: &'a GitSha,
) -> Self
pub fn new( github_client: &'a GitHubClient, owner: &'a Login, repository: &'a RepositoryName, git_sha: &'a GitSha, ) -> Self
Initializes the task
Trait Implementations§
Source§impl<'a> Clone for ListCheckSuites<'a>
impl<'a> Clone for ListCheckSuites<'a>
Source§fn clone(&self) -> ListCheckSuites<'a>
fn clone(&self) -> ListCheckSuites<'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 ListCheckSuites<'a>
impl<'a> Debug for ListCheckSuites<'a>
impl<'a> Copy for ListCheckSuites<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListCheckSuites<'a>
impl<'a> !RefUnwindSafe for ListCheckSuites<'a>
impl<'a> Send for ListCheckSuites<'a>
impl<'a> Sync for ListCheckSuites<'a>
impl<'a> Unpin for ListCheckSuites<'a>
impl<'a> !UnwindSafe for ListCheckSuites<'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