calimero-sys 0.2.3

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

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

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

#[repr(C)]
#[derive(Debug)]
pub struct Location<'a> {
    file: Buffer<'a>,
    line: u32,
    column: u32,
}