#[non_exhaustive]
pub enum RpcError {
Show 14 variants DeadlineExceeded(String), NotInitialized(String), MethodNotHandled(String), NotImplemented, HostError(String), Deser(String), Ser(String), Rpc(String), Nats(String), InvalidParameter(String), ActorHandler(String), ProviderInit(String), Timeout(String), Other(String),
}
Expand description

An error that can occur in the processing of an RPC. This is not request-specific errors but rather cross-cutting errors that can always occur.

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.

DeadlineExceeded(String)

The request exceeded its deadline.

NotInitialized(String)

A capability provider was called before its configure_dispatch was called.

MethodNotHandled(String)

NotImplemented

Error that can be returned if server has not implemented an optional interface method

HostError(String)

Deser(String)

Ser(String)

Rpc(String)

Nats(String)

InvalidParameter(String)

ActorHandler(String)

Error occurred in actor’s rpc handler

ProviderInit(String)

Error occurred during provider initialization or put-link

Timeout(String)

Timeout occurred

Other(String)

Anything else

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. 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

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

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.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

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.