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