pub struct UpdatePullRequestStatusInput {
pub pull_request_id: String,
pub pull_request_status: String,
}Fields§
§pull_request_id: StringThe system-generated ID of the pull request. To get this ID, use ListPullRequests.
pull_request_status: StringThe status of the pull request. The only valid operations are to update the status from OPEN to OPEN, OPEN to CLOSED or from CLOSED to CLOSED.
Trait Implementations§
Source§impl Clone for UpdatePullRequestStatusInput
impl Clone for UpdatePullRequestStatusInput
Source§fn clone(&self) -> UpdatePullRequestStatusInput
fn clone(&self) -> UpdatePullRequestStatusInput
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 UpdatePullRequestStatusInput
impl Debug for UpdatePullRequestStatusInput
Source§impl Default for UpdatePullRequestStatusInput
impl Default for UpdatePullRequestStatusInput
Source§fn default() -> UpdatePullRequestStatusInput
fn default() -> UpdatePullRequestStatusInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePullRequestStatusInput
impl PartialEq for UpdatePullRequestStatusInput
Source§fn eq(&self, other: &UpdatePullRequestStatusInput) -> bool
fn eq(&self, other: &UpdatePullRequestStatusInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdatePullRequestStatusInput
Auto Trait Implementations§
impl Freeze for UpdatePullRequestStatusInput
impl RefUnwindSafe for UpdatePullRequestStatusInput
impl Send for UpdatePullRequestStatusInput
impl Sync for UpdatePullRequestStatusInput
impl Unpin for UpdatePullRequestStatusInput
impl UnwindSafe for UpdatePullRequestStatusInput
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