pub enum WrappedFFIValue<T, O = ()> {
    Wrapped(T),
    WrappedAndOwned(T, O),
}
Expand description

Represents a wrapped ffi value.

It is either the ffi value itself or the ffi value plus some other owned value. By providing support for storing another owned value besides the actual ffi value certain performance optimizations can be applied. For example using the pointer to a Vec<u8>, while using the pointer to a SCALE encoded Vec<u8> that is stored in this wrapper for any other Vec<T>.

Variants

Wrapped(T)

WrappedAndOwned(T, O)

Implementations

Returns the wrapped ffi value.

Trait Implementations

Performs the conversion.

Performs the conversion.

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.

Returns the argument unchanged.

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

Calls U::from(self).

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

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.