This commit is contained in:
gwenn
2020-04-11 15:03:24 +02:00
committed by Thom Chiovoloni
parent 4dbfdc85fe
commit 611c8e8b02
4 changed files with 13 additions and 10 deletions

View File

@@ -396,7 +396,8 @@ impl IndexConstraint<'_> {
}
}
/// `feature = "vtab"` Information about what parameters to pass to `VTabCursor.filter`.
/// `feature = "vtab"` Information about what parameters to pass to
/// `VTabCursor.filter`.
pub struct IndexConstraintUsage<'a>(&'a mut ffi::sqlite3_index_constraint_usage);
impl IndexConstraintUsage<'_> {
@@ -477,7 +478,8 @@ pub trait VTabCursor: Sized {
fn rowid(&self) -> Result<i64>;
}
/// `feature = "vtab"` Context is used by `VTabCursor.column` to specify the cell value.
/// `feature = "vtab"` Context is used by `VTabCursor.column` to specify the
/// cell value.
pub struct Context(*mut ffi::sqlite3_context);
impl Context {