Crate smoldb
Source - Connection
- A connection to a SQLite database.
- ToSqlOutput
ToSqlOutput
represents the possible output types for implementors of the
ToSql
trait.- Value
- Owning dynamic type value. Value’s type is typically
dictated by SQLite (not by the caller).
- OBJECT_KEY
- Deserialize
- A data structure that can be deserialized from any data format supported
by Serde.
- DeserializeOwned
- A data structure that can be deserialized without borrowing any data from
the deserializer.
- Serialize
- A data structure that can be serialized into any data format supported
by Serde.
- Storable
- Storable trait provides methods to support use with Store.
This should be auto-implemented using the
Smoldb
macro - Store
- ToSql
- A trait for types that can be converted into SQLite values.
- Smoldb