Expand description
High-level asynchronous client for Hyper database.
This module provides AsyncClient, the async version of Client.
It uses tokio for async I/O operations.
Structs§
- Async
Client - An asynchronous client for Hyper database.
- Async
Copy InWriter - Async COPY IN writer for bulk data insertion.
- Async
Copy InWriter Owned - Owned-handle variant of
AsyncCopyInWriterthat holds anArc<Mutex<_>>to the underlying connection instead of a borrow. Used by callers that need a'static-lifetime writer — e.g. N-API classes that can’t carry borrowed references across JS callbacks. - Async
Prepared Statement - An async prepared statement.