icydb-core 0.76.13

IcyDB — A type-safe, embedded ORM and schema system for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0432]: unresolved import `icydb_core::db::codec::deserialize_row`
 --> tests/ui/db/codec_module_private.rs:1:5
  |
1 | use icydb_core::db::codec::deserialize_row;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `deserialize_row` in `db::codec`

error[E0603]: module `codec` is private
 --> tests/ui/db/codec_module_private.rs:1:21
  |
1 | use icydb_core::db::codec::deserialize_row;
  |                     ^^^^^ private module
  |
note: the module `codec` is defined here
 --> src/db/mod.rs
  |
  | pub(in crate::db) mod codec;
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^