Replace pub(crate) by pub(super) visibilty

This commit is contained in:
gwenn
2020-05-16 10:18:25 +02:00
parent 65ef2224b6
commit ceb9f11de8
4 changed files with 7 additions and 7 deletions

View File

@@ -542,7 +542,7 @@ impl Values<'_> {
// `sqlite3_value_type` returns `SQLITE_NULL` for pointer.
// So it seems not possible to enhance `ValueRef::from_value`.
#[cfg(feature = "array")]
pub(crate) fn get_array(&self, idx: usize) -> Result<Option<array::Array>> {
fn get_array(&self, idx: usize) -> Result<Option<array::Array>> {
use crate::types::Value;
let arg = self.args[idx];
let ptr = unsafe { ffi::sqlite3_value_pointer(arg, array::ARRAY_TYPE) };