#[non_exhaustive]pub enum ApiError<E>{
Show 13 variants
    Client {
        source: E,
    },
    Auth {
        source: AuthError,
    },
    UrlParse {
        source: ParseError,
    },
    Body {
        source: BodyError,
    },
    Json {
        source: Error,
    },
    MovedPermanently {
        location: Option<String>,
    },
    Gitlab {
        msg: String,
    },
    GitlabService {
        status: StatusCode,
        data: Vec<u8>,
    },
    GitlabObject {
        obj: Value,
    },
    GitlabUnrecognized {
        obj: Value,
    },
    DataType {
        source: Error,
        typename: &'static str,
    },
    Pagination {
        source: PaginationError,
    },
    UnsupportedUrlBase {
        url_base: UrlBase,
    },
}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
The client encountered an error.
Fields
§
source: EThe client error.
Auth
Authentication failed.
UrlParse
The URL failed to parse.
Fields
§
source: ParseErrorThe source of the error.
Body
Body data could not be created.
Json
JSON deserialization from GitLab failed.
MovedPermanently
The resource has been moved permanently.
Gitlab
GitLab returned an error message.
GitlabService
GitLab returned an error without JSON information.
GitlabObject
GitLab returned an error object.
GitlabUnrecognized
GitLab returned an HTTP error with JSON we did not recognize.
DataType
Failed to parse an expected data type from JSON.
Fields
Pagination
An error with pagination occurred.
Fields
§
source: PaginationErrorThe source of the error.
UnsupportedUrlBase
The client does not understand how to use an endpoint for the given URL base.
Implementations§
Trait Implementations§
source§impl<E> Error for ApiError<E>
 
impl<E> Error for ApiError<E>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<E> From<PaginationError> for ApiError<E>
 
impl<E> From<PaginationError> for ApiError<E>
source§fn from(source: PaginationError) -> Self
 
fn from(source: PaginationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E> Freeze for ApiError<E>where
    E: Freeze,
impl<E> !RefUnwindSafe for ApiError<E>
impl<E> Send for ApiError<E>
impl<E> Sync for ApiError<E>
impl<E> Unpin for ApiError<E>where
    E: Unpin,
impl<E> !UnwindSafe for ApiError<E>
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more