Method
add_data_variable_info
(&self, var: NamedDataVariableWithType)
Source from the content-addressed store, hash-verified
| 893 | } |
| 894 | |
| 895 | pub fn add_data_variable_info(&self, var: NamedDataVariableWithType) -> bool { |
| 896 | let raw_data_var = NamedDataVariableWithType::into_raw(var); |
| 897 | let success = unsafe { BNAddDebugDataVariableInfo(self.handle, &raw_data_var) }; |
| 898 | NamedDataVariableWithType::free_raw(raw_data_var); |
| 899 | success |
| 900 | } |
| 901 | } |
| 902 | |
| 903 | unsafe impl RefCountable for DebugInfo { |
Tested by
no test coverage detected