pub struct BatchAssociateApprovalRuleTemplateWithRepositoriesOutput {
pub associated_repository_names: Vec<String>,
pub errors: Vec<CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError>,
}Fields§
§associated_repository_names: Vec<String>A list of names of the repositories that have been associated with the template.
errors: Vec<CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError>A list of any errors that might have occurred while attempting to create the association between the template and the repositories.
Trait Implementations§
Source§impl Clone for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl Clone for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
Source§fn clone(&self) -> BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
fn clone(&self) -> BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
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 BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl Default for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
Source§fn default() -> BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
fn default() -> BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl<'de> Deserialize<'de> for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
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 BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl PartialEq for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
Source§fn eq(
&self,
other: &BatchAssociateApprovalRuleTemplateWithRepositoriesOutput,
) -> bool
fn eq( &self, other: &BatchAssociateApprovalRuleTemplateWithRepositoriesOutput, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
Auto Trait Implementations§
impl Freeze for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl RefUnwindSafe for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl Send for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl Sync for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl Unpin for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
impl UnwindSafe for BatchAssociateApprovalRuleTemplateWithRepositoriesOutput
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