#[non_exhaustive]pub struct BatchDescribeMergeConflictsError {
    pub kind: BatchDescribeMergeConflictsErrorKind,
    /* private fields */
}Expand description
Error type for the BatchDescribeMergeConflicts operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.kind: BatchDescribeMergeConflictsErrorKindKind of error that occurred.
Implementations
sourceimpl BatchDescribeMergeConflictsError
 
impl BatchDescribeMergeConflictsError
sourcepub fn new(kind: BatchDescribeMergeConflictsErrorKind, meta: Error) -> Self
 
pub fn new(kind: BatchDescribeMergeConflictsErrorKind, meta: Error) -> Self
Creates a new BatchDescribeMergeConflictsError.
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
 
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the BatchDescribeMergeConflictsError::Unhandled variant from any error type.
sourcepub fn generic(err: Error) -> Self
 
pub fn generic(err: Error) -> Self
Creates the BatchDescribeMergeConflictsError::Unhandled variant from a aws_smithy_types::Error.
sourcepub fn meta(&self) -> &Error
 
pub fn meta(&self) -> &Error
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn request_id(&self) -> Option<&str>
 
pub fn request_id(&self) -> Option<&str>
Returns the request ID if it’s available.
sourcepub fn is_commit_does_not_exist_exception(&self) -> bool
 
pub fn is_commit_does_not_exist_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::CommitDoesNotExistException.
sourcepub fn is_commit_required_exception(&self) -> bool
 
pub fn is_commit_required_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::CommitRequiredException.
sourcepub fn is_encryption_integrity_checks_failed_exception(&self) -> bool
 
pub fn is_encryption_integrity_checks_failed_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::EncryptionIntegrityChecksFailedException.
sourcepub fn is_encryption_key_access_denied_exception(&self) -> bool
 
pub fn is_encryption_key_access_denied_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::EncryptionKeyAccessDeniedException.
sourcepub fn is_encryption_key_disabled_exception(&self) -> bool
 
pub fn is_encryption_key_disabled_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::EncryptionKeyDisabledException.
sourcepub fn is_encryption_key_not_found_exception(&self) -> bool
 
pub fn is_encryption_key_not_found_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::EncryptionKeyNotFoundException.
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::EncryptionKeyUnavailableException.
sourcepub fn is_invalid_commit_exception(&self) -> bool
 
pub fn is_invalid_commit_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidCommitException.
sourcepub fn is_invalid_conflict_detail_level_exception(&self) -> bool
 
pub fn is_invalid_conflict_detail_level_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidConflictDetailLevelException.
sourcepub fn is_invalid_conflict_resolution_strategy_exception(&self) -> bool
 
pub fn is_invalid_conflict_resolution_strategy_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidConflictResolutionStrategyException.
sourcepub fn is_invalid_continuation_token_exception(&self) -> bool
 
pub fn is_invalid_continuation_token_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidContinuationTokenException.
sourcepub fn is_invalid_max_conflict_files_exception(&self) -> bool
 
pub fn is_invalid_max_conflict_files_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidMaxConflictFilesException.
sourcepub fn is_invalid_max_merge_hunks_exception(&self) -> bool
 
pub fn is_invalid_max_merge_hunks_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidMaxMergeHunksException.
sourcepub fn is_invalid_merge_option_exception(&self) -> bool
 
pub fn is_invalid_merge_option_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidMergeOptionException.
sourcepub fn is_invalid_repository_name_exception(&self) -> bool
 
pub fn is_invalid_repository_name_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::InvalidRepositoryNameException.
sourcepub fn is_maximum_file_content_to_load_exceeded_exception(&self) -> bool
 
pub fn is_maximum_file_content_to_load_exceeded_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::MaximumFileContentToLoadExceededException.
sourcepub fn is_maximum_items_to_compare_exceeded_exception(&self) -> bool
 
pub fn is_maximum_items_to_compare_exceeded_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::MaximumItemsToCompareExceededException.
sourcepub fn is_merge_option_required_exception(&self) -> bool
 
pub fn is_merge_option_required_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::MergeOptionRequiredException.
sourcepub fn is_repository_does_not_exist_exception(&self) -> bool
 
pub fn is_repository_does_not_exist_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::RepositoryDoesNotExistException.
sourcepub fn is_repository_name_required_exception(&self) -> bool
 
pub fn is_repository_name_required_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::RepositoryNameRequiredException.
sourcepub fn is_tips_divergence_exceeded_exception(&self) -> bool
 
pub fn is_tips_divergence_exceeded_exception(&self) -> bool
Returns true if the error kind is BatchDescribeMergeConflictsErrorKind::TipsDivergenceExceededException.
Trait Implementations
sourceimpl Error for BatchDescribeMergeConflictsError
 
impl Error for BatchDescribeMergeConflictsError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · sourcefn description(&self) -> &str
 
fn description(&self) -> &str
use the Display impl or to_string()