(
session: &FFI_SessionRef,
)
| 269 | } |
| 270 | |
| 271 | unsafe extern "C" fn table_options_fn_wrapper( |
| 272 | session: &FFI_SessionRef, |
| 273 | ) -> SVec<(SString, SString)> { |
| 274 | let session = session.inner(); |
| 275 | let table_options = session.table_options(); |
| 276 | table_options_to_rhash(table_options.clone()) |
| 277 | } |
| 278 | |
| 279 | unsafe extern "C" fn default_table_options_fn_wrapper( |
| 280 | session: &FFI_SessionRef, |
nothing calls this directly
no test coverage detected
searching dependent graphs…