Enum reinfer_client::Error[][src]

pub enum Error {
Show variants Api { status_code: StatusCode, message: String, }, BadEndpoint { name: String, }, BadToken { token: String, }, BadSourceIdentifier { identifier: String, }, BadDatasetIdentifier { identifier: String, }, BadTriggerName { identifier: String, }, BadUserIdentifier { identifier: String, }, BadOrganisationPermission { permission: String, }, BadGlobalPermission { permission: String, }, BadBucketIdentifier { identifier: String, }, BadBucketName { name: String, }, BadBucketType { bucket_type: String, }, BadEntityDef { entity_def: String, source: Error, }, BadJsonResponse(Error), BadProtocol { status_code: StatusCode, message: String, }, BuildHttpClient(Error), ReqwestError { message: String, source: Error, }, UrlParseError { message: String, source: ParseError, }, Unknown { message: String, source: Box<dyn Error + Send + Sync + 'static>, },
}

Variants

Api
Show fields

Fields of Api

status_code: StatusCodemessage: String
BadEndpoint
Show fields

Fields of BadEndpoint

name: String
BadToken
Show fields

Fields of BadToken

token: String
BadSourceIdentifier
Show fields

Fields of BadSourceIdentifier

identifier: String
BadDatasetIdentifier
Show fields

Fields of BadDatasetIdentifier

identifier: String
BadTriggerName
Show fields

Fields of BadTriggerName

identifier: String
BadUserIdentifier
Show fields

Fields of BadUserIdentifier

identifier: String
BadOrganisationPermission
Show fields

Fields of BadOrganisationPermission

permission: String
BadGlobalPermission
Show fields

Fields of BadGlobalPermission

permission: String
BadBucketIdentifier
Show fields

Fields of BadBucketIdentifier

identifier: String
BadBucketName
Show fields

Fields of BadBucketName

name: String
BadBucketType
Show fields

Fields of BadBucketType

bucket_type: String
BadEntityDef
Show fields

Fields of BadEntityDef

entity_def: Stringsource: Error
BadJsonResponse(Error)
BadProtocol
Show fields

Fields of BadProtocol

status_code: StatusCodemessage: String
BuildHttpClient(Error)
ReqwestError
Show fields

Fields of ReqwestError

message: Stringsource: Error
UrlParseError
Show fields

Fields of UrlParseError

message: Stringsource: ParseError
Unknown
Show fields

Fields of Unknown

message: Stringsource: Box<dyn Error + Send + Sync + 'static>

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

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

Performs the conversion.

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

Performs the conversion.

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.