calimero-sys 0.10.0

Core Calimero infrastructure and tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::Buffer;

#[cfg(target_arch = "wasm32")]
mod guest;

#[cfg(not(target_arch = "wasm32"))]
mod host;

#[repr(C)]
#[derive(Debug)]
pub struct XCall<'a> {
    context_id: Buffer<'a>,
    function: Buffer<'a>,
    params: Buffer<'a>,
}