pub struct CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub repository_name: Option<String>,
}Expand description
Returns information about errors in a BatchAssociateApprovalRuleTemplateWithRepositories operation.
Fields§
§error_code: Option<String>An error code that specifies whether the repository name was not valid or not found.
error_message: Option<String>An error message that provides details about why the repository name was not found or not valid.
repository_name: Option<String>The name of the repository where the association was not made.
Trait Implementations§
Source§impl Clone for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl Clone for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
Source§fn clone(
&self,
) -> CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
fn clone( &self, ) -> CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
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 CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl Default for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
Source§fn default() -> CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
fn default() -> CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl<'de> Deserialize<'de> for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
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 CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl PartialEq for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
Source§fn eq(
&self,
other: &CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError,
) -> bool
fn eq( &self, other: &CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
Auto Trait Implementations§
impl Freeze for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl RefUnwindSafe for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl Send for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl Sync for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl Unpin for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
impl UnwindSafe for CodeCommitBatchAssociateApprovalRuleTemplateWithRepositoriesError
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