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
use crate::types::LockableStaticBuffer;
use super::{HandleConstraints, HandleTypeInfo};
pub trait StaticVarApi: HandleTypeInfo {
type StaticVarApiImpl: StaticVarApiImpl
+ HandleTypeInfo<
ManagedBufferHandle = Self::ManagedBufferHandle,
BigIntHandle = Self::BigIntHandle,
BigFloatHandle = Self::BigFloatHandle,
EllipticCurveHandle = Self::EllipticCurveHandle,
>;
fn static_var_api_impl() -> Self::StaticVarApiImpl;
}
pub trait StaticVarApiImpl: HandleTypeInfo {
fn with_lockable_static_buffer<R, F: FnOnce(&mut LockableStaticBuffer) -> R>(&self, f: F) -> R;
fn set_external_view_target_address_handle(&self, handle: Self::ManagedBufferHandle);
fn get_external_view_target_address_handle(&self) -> Self::ManagedBufferHandle;
fn next_handle<H: HandleConstraints>(&self) -> H;
fn set_num_arguments(&self, num_arguments: i32);
fn get_num_arguments(&self) -> i32;
fn set_call_value_egld_handle(&self, handle: Self::BigIntHandle);
fn get_call_value_egld_handle(&self) -> Self::BigIntHandle;
fn set_call_value_multi_esdt_handle(&self, handle: Self::ManagedBufferHandle);
fn get_call_value_multi_esdt_handle(&self) -> Self::ManagedBufferHandle;
}