pub struct DescribePullRequestEventsOutput {
pub next_token: Option<String>,
pub pull_request_events: Vec<PullRequestEvent>,
}Fields§
§next_token: Option<String>An enumeration token that can be used in a request to return the next batch of the results.
pull_request_events: Vec<PullRequestEvent>Information about the pull request events.
Trait Implementations§
Source§impl Clone for DescribePullRequestEventsOutput
impl Clone for DescribePullRequestEventsOutput
Source§fn clone(&self) -> DescribePullRequestEventsOutput
fn clone(&self) -> DescribePullRequestEventsOutput
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 DescribePullRequestEventsOutput
impl Default for DescribePullRequestEventsOutput
Source§fn default() -> DescribePullRequestEventsOutput
fn default() -> DescribePullRequestEventsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribePullRequestEventsOutput
impl<'de> Deserialize<'de> for DescribePullRequestEventsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribePullRequestEventsOutput
impl PartialEq for DescribePullRequestEventsOutput
Source§fn eq(&self, other: &DescribePullRequestEventsOutput) -> bool
fn eq(&self, other: &DescribePullRequestEventsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribePullRequestEventsOutput
Auto Trait Implementations§
impl Freeze for DescribePullRequestEventsOutput
impl RefUnwindSafe for DescribePullRequestEventsOutput
impl Send for DescribePullRequestEventsOutput
impl Sync for DescribePullRequestEventsOutput
impl Unpin for DescribePullRequestEventsOutput
impl UnwindSafe for DescribePullRequestEventsOutput
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