Docs.rs
nextsql-backend-rust-runtime-0.3.3
nextsql-backend-rust-runtime 0.3.3
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
shirakawayohane
Dependencies
bytes ^1
normal
optional
chrono ^0.4
normal
rust_decimal ^1
normal
serde_json ^1
normal
tokio-postgres ^0.7
normal
optional
uuid ^1
normal
Versions
19.8%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Crate nextsql_backend_rust_runtime
nextsql_
backend_
rust_
runtime
0.3.3
All Items
Crate Items
Modules
Enums
Traits
Crate
nextsql_
backend_
rust_
runtime
Copy item path
Source
Modules
§
tokio_
postgres_
impl
Enums
§
Update
Field
Represents a field in a partial update operation.
Traits
§
Client
Trait for executing SQL queries against a database connection. Extends
QueryExecutor
with transaction management.
Query
Executor
Common trait for executing SQL queries, shared by both
Client
and
Transaction
.
Row
Trait for reading typed values from a database result row.
ToSql
Param
Trait for values that can be bound as SQL query parameters.
Transaction
Trait for a database transaction. Extends
QueryExecutor
with commit/rollback and nested transaction (savepoint) support. Dropping without calling
commit()
should rollback the transaction.