wasm/execution/runtime_structure/
data_instances.rs

1use alloc::vec::Vec;
2
3pub struct DataInst {
4    pub data: Vec<u8>,
5}
6
7impl core::fmt::Debug for DataInst {
8    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
9        f.debug_struct("DataInst").finish_non_exhaustive()
10    }
11}