Module salsa_2022::database
source · [−]Structs
Simple wrapper struct that takes ownership of a database
DB
and
only gives &self
access to it. See the snapshot
method
for more details.Traits
Indicates a database that also supports parallel query
evaluation. All of Salsa’s base query support is capable of
parallel execution, but for it to work, your query key/value types
must also be
Send
, as must any additional data in your database.