pub struct ListPullRequestsInput {
pub author_arn: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub pull_request_status: Option<String>,
pub repository_name: String,
}Fields§
Optional. The Amazon Resource Name (ARN) of the user who created the pull request. If used, this filters the results to pull requests created by that user.
max_results: Option<i64>A non-zero, non-negative integer used to limit the number of returned results.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
pull_request_status: Option<String>Optional. The status of the pull request. If used, this refines the results to the pull requests that match the specified status.
repository_name: StringThe name of the repository for which you want to list pull requests.
Trait Implementations§
Source§impl Clone for ListPullRequestsInput
impl Clone for ListPullRequestsInput
Source§fn clone(&self) -> ListPullRequestsInput
fn clone(&self) -> ListPullRequestsInput
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 Debug for ListPullRequestsInput
impl Debug for ListPullRequestsInput
Source§impl Default for ListPullRequestsInput
impl Default for ListPullRequestsInput
Source§fn default() -> ListPullRequestsInput
fn default() -> ListPullRequestsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListPullRequestsInput
impl PartialEq for ListPullRequestsInput
Source§impl Serialize for ListPullRequestsInput
impl Serialize for ListPullRequestsInput
impl StructuralPartialEq for ListPullRequestsInput
Auto Trait Implementations§
impl Freeze for ListPullRequestsInput
impl RefUnwindSafe for ListPullRequestsInput
impl Send for ListPullRequestsInput
impl Sync for ListPullRequestsInput
impl Unpin for ListPullRequestsInput
impl UnwindSafe for ListPullRequestsInput
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