mysqlclient_sys/
lib.rs
1#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)]
2#[cfg(feature = "bundled")]
3extern crate mysqlclient_src;
4
5#[allow(dead_code)]
6mod bindings {
7 include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
8}
9
10pub use self::bindings::*;
11
12#[cfg(all(not(mysql_5_7_x), not(mariadb_10_x)))]
15pub type my_bool = bool;
16
17#[cfg(all(not(mysql_5_7_x), not(mariadb_10_x)))]
18pub const FALSE: my_bool = false;
19#[cfg(all(not(mysql_5_7_x), not(mariadb_10_x)))]
20pub const TRUE: my_bool = true;
21
22#[cfg(any(mysql_5_7_x, mariadb_10_x))]
23pub const FALSE: my_bool = 0;
24
25#[cfg(any(mysql_5_7_x, mariadb_10_x))]
26pub const TRUE: my_bool = 1;
27
28pub const SUPPORTS_MYSQL_SSL_MODE: bool = !cfg!(mariadb_10_x);
29
30#[cfg(mariadb_10_x)]
31#[repr(u32)]
32#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
33pub enum mysql_ssl_mode {
34 SSL_MODE_DISABLED = 1,
35 SSL_MODE_PREFERRED = 2,
36 SSL_MODE_REQUIRED = 3,
37 SSL_MODE_VERIFY_CA = 4,
38 SSL_MODE_VERIFY_IDENTITY = 5,
39}
40
41#[cfg(mariadb_10_x)]
42pub mod mysql_option {
43 pub const MYSQL_OPT_SSL_MODE: crate::bindings::mysql_option =
45 crate::bindings::mysql_option::MYSQL_SERVER_PUBLIC_KEY;
46 pub const MYSQL_OPT_SSL_CA: crate::bindings::mysql_option =
47 crate::bindings::mysql_option::MYSQL_OPT_SSL_CA;
48 pub const MYSQL_OPT_SSL_CERT: crate::bindings::mysql_option =
49 crate::bindings::mysql_option::MYSQL_OPT_SSL_CERT;
50 pub const MYSQL_OPT_SSL_KEY: crate::bindings::mysql_option =
51 crate::bindings::mysql_option::MYSQL_OPT_SSL_KEY;
52 pub const MYSQL_SET_CHARSET_NAME: crate::bindings::mysql_option =
53 crate::bindings::mysql_option::MYSQL_SET_CHARSET_NAME;
54}