MCPcopy Create free account
hub / github.com/asg017/sqlite-loadable-rs / wrapped

Function wrapped

tests/test_find_function.rs:71–77  ·  view source on GitHub ↗
(context: *mut sqlite3_context, values: &[*mut sqlite3_value])

Source from the content-addressed store, hash-verified

69}
70
71fn wrapped(context: *mut sqlite3_context, values: &[*mut sqlite3_value]) -> Result<()> {
72 api::result_text(
73 context,
74 format!("Wrapped access! {}", api::value_text(&values[0]).unwrap()),
75 )?;
76 Ok(())
77}
78
79#[repr(C)]
80pub struct FindCursor {

Callers

nothing calls this directly

Calls 1

result_textFunction · 0.85

Tested by

no test coverage detected