testnumbat_wasm/api/uncallable/log_api_uncallable.rs
1use crate::{
2 api::{Handle, LogApi},
3 types::ArgBuffer,
4};
5
6use super::UncallableApi;
7
8impl LogApi for UncallableApi {
9 fn write_event_log(&self, _topics_buffer: &ArgBuffer, _data: &[u8]) {
10 unreachable!()
11 }
12
13 fn write_legacy_log(&self, _topics: &[[u8; 32]], _data: &[u8]) {
14 unreachable!()
15 }
16
17 fn managed_write_log(&self, _topics_handle: Handle, _data_handle: Handle) {
18 unreachable!()
19 }
20}