pub struct UpdatePullRequestApprovalStateInput {
pub approval_state: String,
pub pull_request_id: String,
pub revision_id: String,
}Fields§
§approval_state: StringThe approval state to associate with the user on the pull request.
pull_request_id: StringThe system-generated ID of the pull request.
revision_id: StringThe system-generated ID of the revision.
Trait Implementations§
Source§impl Clone for UpdatePullRequestApprovalStateInput
impl Clone for UpdatePullRequestApprovalStateInput
Source§fn clone(&self) -> UpdatePullRequestApprovalStateInput
fn clone(&self) -> UpdatePullRequestApprovalStateInput
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 UpdatePullRequestApprovalStateInput
impl Default for UpdatePullRequestApprovalStateInput
Source§fn default() -> UpdatePullRequestApprovalStateInput
fn default() -> UpdatePullRequestApprovalStateInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdatePullRequestApprovalStateInput
impl PartialEq for UpdatePullRequestApprovalStateInput
Source§fn eq(&self, other: &UpdatePullRequestApprovalStateInput) -> bool
fn eq(&self, other: &UpdatePullRequestApprovalStateInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdatePullRequestApprovalStateInput
Auto Trait Implementations§
impl Freeze for UpdatePullRequestApprovalStateInput
impl RefUnwindSafe for UpdatePullRequestApprovalStateInput
impl Send for UpdatePullRequestApprovalStateInput
impl Sync for UpdatePullRequestApprovalStateInput
impl Unpin for UpdatePullRequestApprovalStateInput
impl UnwindSafe for UpdatePullRequestApprovalStateInput
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