#[repr(u8)]
pub enum BusErrno {
Show 20 variants Success, Ser, Des, Wapm, Fetch, Compile, Abi, Aborted, Badhandle, Topic, Badcb, Unsupported, Badrequest, Denied, Internal, Alloc, Invoke, Consumed, Memviolation, Unknown,
}

Variants§

§

Success

No error occurred. Call completed successfully.

§

Ser

Failed during serialization

§

Des

Failed during deserialization

§

Wapm

Invalid WAPM process

§

Fetch

Failed to fetch the WAPM process

§

Compile

Failed to compile the WAPM process

§

Abi

Invalid ABI

§

Aborted

Call was aborted

§

Badhandle

Bad handle

§

Topic

Invalid topic

§

Badcb

Invalid callback

§

Unsupported

Call is unsupported

§

Badrequest

Bad request

§

Denied

Access denied

§

Internal

Internal error has occured

§

Alloc

Memory allocation failed

§

Invoke

Invocation has failed

§

Consumed

Already consumed

§

Memviolation

Memory access violation

§

Unknown

Some other unhandled error. If you see this, it’s probably a bug.

Implementations§

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
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
Native Wasm type.
Convert self to Self::Native. Read more
Convert a value of kind Self::Native to Self. Read more
Returns whether the given value is from the given store. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
This method is passed a byte slice which contains the byte representation of self. It must zero out any bytes which are uninitialized (e.g. padding bytes).

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
The archived version of the pointer metadata for this type.
Converts some archived metadata to the pointer metadata for itself.
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Deserializes using the given deserializer
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type for metadata in pointers and references to Self.
🔬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
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. 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.
upcast ref
upcast mut ref
upcast boxed dyn
The C type (a struct) that can hold/represent all the represented values.
The array type that can hold all the represented values. Read more
Constructs Self based on an array of values. Read more
Constructs Self based on a slice of values. Read more
Builds and returns an array of type Array from a tuple (list) of values. Read more
Allocates and return an empty array of type Array that will hold a tuple (list) of values, usually to hold the returned values of a WebAssembly function call.
Builds a tuple (list) of values from a C struct of type CStruct. Read more
Builds and returns a C struct of type CStruct from a tuple (list) of values. Read more
Writes the contents of a C struct to an array of RawValue. Read more
Get the Wasm types for the tuple (list) of currently represented values.