libpq 6.0.1

Safe binding for libpq
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
bitflags::bitflags! {
    /**
     * Flags controlling trace output.
     */
    #[repr(transparent)]
    pub struct Flags : u32 {
        /** Omit timestamps from each line. */
        const SUPPRESS_TIMESTAMPS = pq_sys::PQTRACE_SUPPRESS_TIMESTAMPS;
        /** Redact portions of some messages, for testing frameworks. */
        const REGRESS_MODE = pq_sys::PQTRACE_REGRESS_MODE;
    }
}