1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use crate::{
api::{Handle, StaticVarApi, StaticVarApiImpl},
types::LockableStaticBuffer,
};
use super::UncallableApi;
impl StaticVarApi for UncallableApi {
type StaticVarApiImpl = UncallableApi;
fn static_var_api_impl() -> Self::StaticVarApiImpl {
unreachable!()
}
}
impl StaticVarApiImpl for UncallableApi {
fn with_lockable_static_buffer<R, F: FnOnce(&mut LockableStaticBuffer) -> R>(
&self,
_f: F,
) -> R {
unreachable!()
}
fn set_external_view_target_address_handle(&self, _handle: Handle) {
unreachable!()
}
fn get_external_view_target_address_handle(&self) -> Handle {
unreachable!()
}
fn next_handle(&self) -> Handle {
unreachable!()
}
fn set_num_arguments(&self, _num_arguments: i32) {
unreachable!()
}
fn get_num_arguments(&self) -> i32 {
unreachable!()
}
fn set_call_value_egld_handle(&self, _handle: Handle) {
unreachable!()
}
fn get_call_value_egld_handle(&self) -> Handle {
unreachable!()
}
fn set_call_value_multi_esdt_handle(&self, _handle: Handle) {
unreachable!()
}
fn get_call_value_multi_esdt_handle(&self) -> Handle {
unreachable!()
}
}