pub struct BatchAssociateApprovalRuleTemplateWithRepositoriesInput {
pub approval_rule_template_name: String,
pub repository_names: Vec<String>,
}Fields§
§approval_rule_template_name: StringThe name of the template you want to associate with one or more repositories.
repository_names: Vec<String>The names of the repositories you want to associate with the template.
The length constraint limit is for each string in the array. The array itself can be empty.
Trait Implementations§
Source§impl Clone for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl Clone for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
Source§fn clone(&self) -> BatchAssociateApprovalRuleTemplateWithRepositoriesInput
fn clone(&self) -> BatchAssociateApprovalRuleTemplateWithRepositoriesInput
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 BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl Default for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
Source§fn default() -> BatchAssociateApprovalRuleTemplateWithRepositoriesInput
fn default() -> BatchAssociateApprovalRuleTemplateWithRepositoriesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl PartialEq for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
Source§fn eq(
&self,
other: &BatchAssociateApprovalRuleTemplateWithRepositoriesInput,
) -> bool
fn eq( &self, other: &BatchAssociateApprovalRuleTemplateWithRepositoriesInput, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
Auto Trait Implementations§
impl Freeze for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl RefUnwindSafe for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl Send for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl Sync for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl Unpin for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
impl UnwindSafe for BatchAssociateApprovalRuleTemplateWithRepositoriesInput
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