#[non_exhaustive]
pub enum ApiError<E>where
    E: Error + Send + Sync + 'static,
{ Client { source: E, }, UrlParse { source: ParseError, }, Body { source: BodyError, }, Json { source: Error, }, Gitlab { msg: String, }, GitlabService { status: StatusCode, data: Vec<u8>, }, GitlabObject { obj: Value, }, GitlabUnrecognized { obj: Value, }, DataType { source: Error, typename: &'static str, }, Pagination { source: PaginationError, }, }
Expand description

Errors which may occur when using API endpoints.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Client

Fields

source: E

The client error.

The client encountered an error.

UrlParse

Fields

source: ParseError

The source of the error.

The URL failed to parse.

Body

Fields

source: BodyError

The source of the error.

Body data could not be created.

Json

Fields

source: Error

The source of the error.

JSON deserialization from GitLab failed.

Gitlab

Fields

msg: String

The error message from GitLab.

GitLab returned an error message.

GitlabService

Fields

status: StatusCode

The status code for the return.

data: Vec<u8>

The error data from GitLab.

GitLab returned an error without JSON information.

GitlabObject

Fields

obj: Value

The error object from GitLab.

GitLab returned an error object.

GitlabUnrecognized

Fields

obj: Value

The full object from GitLab.

GitLab returned an HTTP error with JSON we did not recognize.

DataType

Fields

source: Error

The source of the error.

typename: &'static str

The name of the type that could not be deserialized.

Failed to parse an expected data type from JSON.

Pagination

Fields

source: PaginationError

The source of the error.

An error with pagination occurred.

Implementations

Create an API error in a client error.

Wrap a client error in another wrapper.

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
👎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 is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

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.

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
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