Skip to main content

calimero_sys/types/
location.rs

1use crate::Buffer;
2
3#[cfg(target_arch = "wasm32")]
4mod guest;
5
6#[cfg(not(target_arch = "wasm32"))]
7mod host;
8
9#[repr(C)]
10#[derive(Debug)]
11pub struct Location<'a> {
12    file: Buffer<'a>,
13    line: u32,
14    column: u32,
15}