multiversx_sc/api/uncallable/
static_var_api_uncallable.rs

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::{RawHandle, StaticVarApi, StaticVarApiFlags, 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: RawHandle) {
        unreachable!()
    }

    fn get_external_view_target_address_handle(&self) -> RawHandle {
        unreachable!()
    }

    fn next_handle(&self) -> RawHandle {
        unreachable!()
    }

    fn set_num_arguments(&self, _num_arguments: i32) {
        unreachable!()
    }

    fn get_num_arguments(&self) -> i32 {
        unreachable!()
    }

    fn set_flags(&self, _flags: StaticVarApiFlags) {
        unreachable!()
    }

    fn get_flags(&self) -> StaticVarApiFlags {
        unreachable!()
    }

    fn is_scaling_factor_cached(&self, _decimals: usize) -> bool {
        unreachable!()
    }

    fn set_scaling_factor_cached(&self, _decimals: usize) {
        unreachable!()
    }
}