mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
8 lines
248 B
Zig
8 lines
248 B
Zig
pub const ConnectionFlags = packed struct {
|
|
is_ready_for_query: bool = false,
|
|
is_processing_data: bool = false,
|
|
use_unnamed_prepared_statements: bool = false,
|
|
waiting_to_prepare: bool = false,
|
|
has_backpressure: bool = false,
|
|
};
|