pub struct DescribePullRequestEventsInput {
pub actor_arn: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub pull_request_event_type: Option<String>,
pub pull_request_id: String,
}Fields§
§actor_arn: Option<String>The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with more commits or changing the status of a pull request.
max_results: Option<i64>A non-zero, non-negative integer used to limit the number of returned results. The default is 100 events, which is also the maximum number of events that can be returned in a result.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
pull_request_event_type: Option<String>Optional. The pull request event type about which you want to return information.
pull_request_id: StringThe system-generated ID of the pull request. To get this ID, use ListPullRequests.
Trait Implementations§
Source§impl Clone for DescribePullRequestEventsInput
impl Clone for DescribePullRequestEventsInput
Source§fn clone(&self) -> DescribePullRequestEventsInput
fn clone(&self) -> DescribePullRequestEventsInput
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 Default for DescribePullRequestEventsInput
impl Default for DescribePullRequestEventsInput
Source§fn default() -> DescribePullRequestEventsInput
fn default() -> DescribePullRequestEventsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribePullRequestEventsInput
impl PartialEq for DescribePullRequestEventsInput
Source§fn eq(&self, other: &DescribePullRequestEventsInput) -> bool
fn eq(&self, other: &DescribePullRequestEventsInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribePullRequestEventsInput
Auto Trait Implementations§
impl Freeze for DescribePullRequestEventsInput
impl RefUnwindSafe for DescribePullRequestEventsInput
impl Send for DescribePullRequestEventsInput
impl Sync for DescribePullRequestEventsInput
impl Unpin for DescribePullRequestEventsInput
impl UnwindSafe for DescribePullRequestEventsInput
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