Trait sp_runtime_interface::host::IntoPreallocatedFFIValue [−][src]
Something that can be converted into a preallocated ffi value.
Every type parameter that should be given as &mut
into a runtime interface function, needs
to implement this trait. After executing the host implementation of the runtime interface
function, the value is copied into the preallocated wasm memory.
This should only be used for types which have a fixed size, like slices. Other types like a vec do not work with this interface, as we can not call into wasm to reallocate memory. So, this trait should be implemented carefully.
Associated Types
type SelfInstance
[src]
As Self
can be an unsized type, it needs to be represented by a sized type at the host.
This SelfInstance
is the sized type.
Required methods
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: Self::FFIType
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: Self::FFIType
) -> Result<()>
Convert self_instance
into the given preallocated ffi value.
Implementations on Foreign Types
impl IntoPreallocatedFFIValue for [u8]
[src]
type SelfInstance = Vec<u8>
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u64
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u64
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 1]
[src]
type SelfInstance = [u8; 1]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 2]
[src]
type SelfInstance = [u8; 2]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 3]
[src]
type SelfInstance = [u8; 3]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 4]
[src]
type SelfInstance = [u8; 4]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 5]
[src]
type SelfInstance = [u8; 5]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 6]
[src]
type SelfInstance = [u8; 6]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 7]
[src]
type SelfInstance = [u8; 7]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 8]
[src]
type SelfInstance = [u8; 8]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 9]
[src]
type SelfInstance = [u8; 9]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 10]
[src]
type SelfInstance = [u8; 10]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 11]
[src]
type SelfInstance = [u8; 11]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 12]
[src]
type SelfInstance = [u8; 12]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 13]
[src]
type SelfInstance = [u8; 13]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 14]
[src]
type SelfInstance = [u8; 14]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 15]
[src]
type SelfInstance = [u8; 15]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 16]
[src]
type SelfInstance = [u8; 16]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 17]
[src]
type SelfInstance = [u8; 17]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 18]
[src]
type SelfInstance = [u8; 18]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 19]
[src]
type SelfInstance = [u8; 19]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 20]
[src]
type SelfInstance = [u8; 20]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 21]
[src]
type SelfInstance = [u8; 21]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 22]
[src]
type SelfInstance = [u8; 22]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 23]
[src]
type SelfInstance = [u8; 23]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 24]
[src]
type SelfInstance = [u8; 24]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 25]
[src]
type SelfInstance = [u8; 25]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 26]
[src]
type SelfInstance = [u8; 26]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 27]
[src]
type SelfInstance = [u8; 27]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 28]
[src]
type SelfInstance = [u8; 28]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 29]
[src]
type SelfInstance = [u8; 29]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 30]
[src]
type SelfInstance = [u8; 30]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 31]
[src]
type SelfInstance = [u8; 31]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 32]
[src]
type SelfInstance = [u8; 32]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 33]
[src]
type SelfInstance = [u8; 33]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 34]
[src]
type SelfInstance = [u8; 34]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 35]
[src]
type SelfInstance = [u8; 35]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 36]
[src]
type SelfInstance = [u8; 36]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 37]
[src]
type SelfInstance = [u8; 37]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 38]
[src]
type SelfInstance = [u8; 38]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 39]
[src]
type SelfInstance = [u8; 39]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 40]
[src]
type SelfInstance = [u8; 40]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 41]
[src]
type SelfInstance = [u8; 41]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 42]
[src]
type SelfInstance = [u8; 42]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 43]
[src]
type SelfInstance = [u8; 43]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 44]
[src]
type SelfInstance = [u8; 44]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 45]
[src]
type SelfInstance = [u8; 45]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 46]
[src]
type SelfInstance = [u8; 46]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 47]
[src]
type SelfInstance = [u8; 47]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 48]
[src]
type SelfInstance = [u8; 48]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 49]
[src]
type SelfInstance = [u8; 49]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 50]
[src]
type SelfInstance = [u8; 50]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 51]
[src]
type SelfInstance = [u8; 51]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 52]
[src]
type SelfInstance = [u8; 52]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 53]
[src]
type SelfInstance = [u8; 53]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 54]
[src]
type SelfInstance = [u8; 54]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 55]
[src]
type SelfInstance = [u8; 55]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 56]
[src]
type SelfInstance = [u8; 56]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 57]
[src]
type SelfInstance = [u8; 57]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 58]
[src]
type SelfInstance = [u8; 58]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 59]
[src]
type SelfInstance = [u8; 59]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 60]
[src]
type SelfInstance = [u8; 60]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 61]
[src]
type SelfInstance = [u8; 61]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 62]
[src]
type SelfInstance = [u8; 62]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 63]
[src]
type SelfInstance = [u8; 63]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 64]
[src]
type SelfInstance = [u8; 64]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 65]
[src]
type SelfInstance = [u8; 65]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 66]
[src]
type SelfInstance = [u8; 66]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 67]
[src]
type SelfInstance = [u8; 67]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 68]
[src]
type SelfInstance = [u8; 68]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 69]
[src]
type SelfInstance = [u8; 69]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 70]
[src]
type SelfInstance = [u8; 70]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 71]
[src]
type SelfInstance = [u8; 71]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 72]
[src]
type SelfInstance = [u8; 72]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 73]
[src]
type SelfInstance = [u8; 73]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 74]
[src]
type SelfInstance = [u8; 74]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 75]
[src]
type SelfInstance = [u8; 75]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 76]
[src]
type SelfInstance = [u8; 76]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 77]
[src]
type SelfInstance = [u8; 77]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 78]
[src]
type SelfInstance = [u8; 78]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 79]
[src]
type SelfInstance = [u8; 79]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 80]
[src]
type SelfInstance = [u8; 80]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 81]
[src]
type SelfInstance = [u8; 81]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 82]
[src]
type SelfInstance = [u8; 82]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 83]
[src]
type SelfInstance = [u8; 83]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 84]
[src]
type SelfInstance = [u8; 84]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 85]
[src]
type SelfInstance = [u8; 85]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 86]
[src]
type SelfInstance = [u8; 86]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 87]
[src]
type SelfInstance = [u8; 87]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 88]
[src]
type SelfInstance = [u8; 88]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 89]
[src]
type SelfInstance = [u8; 89]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 90]
[src]
type SelfInstance = [u8; 90]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 91]
[src]
type SelfInstance = [u8; 91]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 92]
[src]
type SelfInstance = [u8; 92]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 93]
[src]
type SelfInstance = [u8; 93]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 94]
[src]
type SelfInstance = [u8; 94]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 95]
[src]
type SelfInstance = [u8; 95]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
impl IntoPreallocatedFFIValue for [u8; 96]
[src]
type SelfInstance = [u8; 96]
fn into_preallocated_ffi_value(
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>
[src]
self_instance: Self::SelfInstance,
context: &mut dyn FunctionContext,
allocated: u32
) -> Result<()>