Enum rusoto_codecommit::MergePullRequestByFastForwardError[][src]

pub enum MergePullRequestByFastForwardError {
    EncryptionIntegrityChecksFailed(String),
    EncryptionKeyAccessDenied(String),
    EncryptionKeyDisabled(String),
    EncryptionKeyNotFound(String),
    EncryptionKeyUnavailable(String),
    InvalidCommitId(String),
    InvalidPullRequestId(String),
    InvalidRepositoryName(String),
    ManualMergeRequired(String),
    PullRequestAlreadyClosed(String),
    PullRequestDoesNotExist(String),
    PullRequestIdRequired(String),
    ReferenceDoesNotExist(String),
    RepositoryDoesNotExist(String),
    RepositoryNameRequired(String),
    TipOfSourceReferenceIsDifferent(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by MergePullRequestByFastForward

Variants

An encryption integrity check failed.

An encryption key could not be accessed.

The encryption key is disabled.

No encryption key was found.

The encryption key is not available.

The specified commit ID is not valid.

The pull request ID is not valid. Make sure that you have provided the full ID and that the pull request is in the specified repository, and then try again.

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

The pull request status cannot be updated because it is already closed.

The pull request ID could not be found. Make sure that you have specified the correct repository name and pull request ID, and then try again.

A pull request ID is required, but none was provided.

The specified reference does not exist. You must provide a full commit ID.

The specified repository does not exist.

A repository name is required but was not specified.

The tip of the source branch in the destination repository does not match the tip of the source branch specified in your request. The pull request might have been updated. Make sure that you have the latest changes.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl MergePullRequestByFastForwardError
[src]

Trait Implementations

impl Debug for MergePullRequestByFastForwardError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MergePullRequestByFastForwardError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for MergePullRequestByFastForwardError
[src]

Performs the conversion.

impl From<CredentialsError> for MergePullRequestByFastForwardError
[src]

Performs the conversion.

impl From<HttpDispatchError> for MergePullRequestByFastForwardError
[src]

impl From<Error> for MergePullRequestByFastForwardError
[src]

Performs the conversion.

impl Display for MergePullRequestByFastForwardError
[src]

Formats the value using the given formatter. Read more

impl Error for MergePullRequestByFastForwardError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations