pub struct ListPullRequestsOutput {
pub next_token: Option<String>,
pub pull_request_ids: Vec<String>,
}Fields§
§next_token: Option<String>An enumeration token that allows the operation to batch the next results of the operation.
pull_request_ids: Vec<String>The system-generated IDs of the pull requests.
Trait Implementations§
Source§impl Clone for ListPullRequestsOutput
impl Clone for ListPullRequestsOutput
Source§fn clone(&self) -> ListPullRequestsOutput
fn clone(&self) -> ListPullRequestsOutput
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 ListPullRequestsOutput
impl Debug for ListPullRequestsOutput
Source§impl Default for ListPullRequestsOutput
impl Default for ListPullRequestsOutput
Source§fn default() -> ListPullRequestsOutput
fn default() -> ListPullRequestsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPullRequestsOutput
impl<'de> Deserialize<'de> for ListPullRequestsOutput
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 ListPullRequestsOutput
impl PartialEq for ListPullRequestsOutput
impl StructuralPartialEq for ListPullRequestsOutput
Auto Trait Implementations§
impl Freeze for ListPullRequestsOutput
impl RefUnwindSafe for ListPullRequestsOutput
impl Send for ListPullRequestsOutput
impl Sync for ListPullRequestsOutput
impl Unpin for ListPullRequestsOutput
impl UnwindSafe for ListPullRequestsOutput
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