logo
pub enum DeleteFileError {
Show 22 variants BranchDoesNotExist(String), BranchNameIsTagName(String), BranchNameRequired(String), CommitMessageLengthExceeded(String), EncryptionIntegrityChecksFailed(String), EncryptionKeyAccessDenied(String), EncryptionKeyDisabled(String), EncryptionKeyNotFound(String), EncryptionKeyUnavailable(String), FileDoesNotExist(String), InvalidBranchName(String), InvalidEmail(String), InvalidParentCommitId(String), InvalidPath(String), InvalidRepositoryName(String), NameLengthExceeded(String), ParentCommitDoesNotExist(String), ParentCommitIdOutdated(String), ParentCommitIdRequired(String), PathRequired(String), RepositoryDoesNotExist(String), RepositoryNameRequired(String),
}
Expand description

Errors returned by DeleteFile

Variants

BranchDoesNotExist(String)

The specified branch does not exist.

BranchNameIsTagName(String)

The specified branch name is not valid because it is a tag name. Enter the name of a branch in the repository. For a list of valid branch names, use ListBranches.

BranchNameRequired(String)

A branch name is required, but was not specified.

CommitMessageLengthExceeded(String)

The commit message is too long. Provide a shorter string.

EncryptionIntegrityChecksFailed(String)

An encryption integrity check failed.

EncryptionKeyAccessDenied(String)

An encryption key could not be accessed.

EncryptionKeyDisabled(String)

The encryption key is disabled.

EncryptionKeyNotFound(String)

No encryption key was found.

EncryptionKeyUnavailable(String)

The encryption key is not available.

FileDoesNotExist(String)

The specified file does not exist. Verify that you have used the correct file name, full path, and extension.

InvalidBranchName(String)

The specified reference name is not valid.

InvalidEmail(String)

The specified email address either contains one or more characters that are not allowed, or it exceeds the maximum number of characters allowed for an email address.

InvalidParentCommitId(String)

The parent commit ID is not valid. The commit ID cannot be empty, and must match the head commit ID for the branch of the repository where you want to add or update a file.

InvalidPath(String)

The specified path is not valid.

InvalidRepositoryName(String)

A specified repository name is not valid.

This exception occurs only 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.

NameLengthExceeded(String)

The user name is not valid because it has exceeded the character limit for author names.

ParentCommitDoesNotExist(String)

The parent commit ID is not valid because it does not exist. The specified parent commit ID does not exist in the specified branch of the repository.

ParentCommitIdOutdated(String)

The file could not be added because the provided parent commit ID is not the current tip of the specified branch. To view the full commit ID of the current head of the branch, use GetBranch.

ParentCommitIdRequired(String)

A parent commit ID is required. To view the full commit ID of a branch in a repository, use GetBranch or a Git command (for example, git pull or git log).

PathRequired(String)

The folderPath for a location cannot be null.

RepositoryDoesNotExist(String)

The specified repository does not exist.

RepositoryNameRequired(String)

A repository name is required, but was not specified.

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

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

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more