Skip to main content

Crate nextsql_backend_rust_runtime

Crate nextsql_backend_rust_runtime 

Source

Modules§

tokio_postgres_impl

Enums§

UpdateField
Represents a field in a partial update operation.

Traits§

Client
Trait for executing SQL queries against a database. Uses impl Future instead of async_trait to avoid proc macro compile overhead.
Row
Trait for reading typed values from a database result row.
ToSqlParam
Trait for values that can be bound as SQL query parameters.
Transaction
Trait for a database transaction. Supports the same query/execute operations as Client, plus commit/rollback. Dropping without calling commit() should rollback the transaction.