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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use super::DynamicValueType;
use sys;
#[allow(missing_docs)]
#[derive(Debug)]
pub struct SBVariablesOptions {
pub raw: sys::SBVariablesOptionsRef,
}
impl SBVariablesOptions {
pub fn new() -> SBVariablesOptions {
SBVariablesOptions::wrap(unsafe { sys::CreateSBVariablesOptions() })
}
pub fn wrap(raw: sys::SBVariablesOptionsRef) -> SBVariablesOptions {
SBVariablesOptions { raw: raw }
}
pub fn maybe_wrap(raw: sys::SBVariablesOptionsRef) -> Option<SBVariablesOptions> {
if unsafe { sys::SBVariablesOptionsIsValid(raw) != 0 } {
Some(SBVariablesOptions { raw: raw })
} else {
None
}
}
pub fn is_valid(&self) -> bool {
unsafe { sys::SBVariablesOptionsIsValid(self.raw) != 0 }
}
#[allow(missing_docs)]
pub fn include_arguments(&self) -> bool {
unsafe { sys::SBVariablesOptionsGetIncludeArguments(self.raw) != 0 }
}
#[allow(missing_docs)]
pub fn set_include_arguments(&self, arguments: bool) {
unsafe { sys::SBVariablesOptionsSetIncludeArguments(self.raw, arguments as u8) };
}
#[allow(missing_docs)]
pub fn include_locals(&self) -> bool {
unsafe { sys::SBVariablesOptionsGetIncludeLocals(self.raw) != 0 }
}
#[allow(missing_docs)]
pub fn set_include_locals(&self, locals: bool) {
unsafe { sys::SBVariablesOptionsSetIncludeLocals(self.raw, locals as u8) };
}
#[allow(missing_docs)]
pub fn include_statics(&self) -> bool {
unsafe { sys::SBVariablesOptionsGetIncludeStatics(self.raw) != 0 }
}
#[allow(missing_docs)]
pub fn set_include_statics(&self, statics: bool) {
unsafe { sys::SBVariablesOptionsSetIncludeStatics(self.raw, statics as u8) };
}
#[allow(missing_docs)]
pub fn in_scope_only(&self) -> bool {
unsafe { sys::SBVariablesOptionsGetInScopeOnly(self.raw) != 0 }
}
#[allow(missing_docs)]
pub fn set_in_scope_only(&self, in_scope_only: bool) {
unsafe { sys::SBVariablesOptionsSetInScopeOnly(self.raw, in_scope_only as u8) };
}
#[allow(missing_docs)]
pub fn include_runtime_support_values(&self) -> bool {
unsafe { sys::SBVariablesOptionsGetIncludeRuntimeSupportValues(self.raw) != 0 }
}
#[allow(missing_docs)]
pub fn set_include_runtime_support_values(&self, include: bool) {
unsafe { sys::SBVariablesOptionsSetIncludeRuntimeSupportValues(self.raw, include as u8) };
}
#[allow(missing_docs)]
pub fn use_dynamic(&self) -> DynamicValueType {
unsafe { sys::SBVariablesOptionsGetUseDynamic(self.raw) }
}
#[allow(missing_docs)]
pub fn set_use_dynamic(&self, use_dynamic: DynamicValueType) {
unsafe { sys::SBVariablesOptionsSetUseDynamic(self.raw, use_dynamic) };
}
}
impl Default for SBVariablesOptions {
fn default() -> Self {
Self::new()
}
}
impl Drop for SBVariablesOptions {
fn drop(&mut self) {
unsafe { sys::DisposeSBVariablesOptions(self.raw) };
}
}