Enum wasmbus_rpc::RpcError[][src]

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

DeadlineExceeded(String)

The request exceeded its deadline.

Tuple Fields of DeadlineExceeded

0: String
NotInitialized(String)

A capability provider was called before its configure_dispatch was called.

Tuple Fields of NotInitialized

0: String
MethodNotHandled(String)

Tuple Fields of MethodNotHandled

0: String
NotImplemented

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

HostError(String)

Tuple Fields of HostError

0: String
Deser(String)

Tuple Fields of Deser

0: String
Ser(String)

Tuple Fields of Ser

0: String
Rpc(String)

Tuple Fields of Rpc

0: String
Nats(String)

Tuple Fields of Nats

0: String
InvalidParameter(String)

Tuple Fields of InvalidParameter

0: String
ActorHandler(String)

Error occurred in actor’s rpc handler

Tuple Fields of ActorHandler

0: String
ProviderInit(String)

Error occurred during provider initialization or put-link

Tuple Fields of ProviderInit

0: String
Timeout(String)

Timeout occurred

Tuple Fields of Timeout

0: String
Other(String)

Anything else

Tuple Fields of Other

0: String

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.

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.