odbc_sys/param_type.rs
1/// Used by `SQLBindParameter`.
2#[repr(i16)]
3#[derive(Debug, PartialEq, Eq, Clone, Copy)]
4pub enum ParamType {
5 Unknown = 0,
6 Input = 1,
7 InputOutput = 2,
8 ResultCol = 3,
9 Output = 4,
10 ReturnValue = 5,
11 #[cfg(feature = "odbc_version_3_80")]
12 InputOutputStream = 8,
13 #[cfg(feature = "odbc_version_3_80")]
14 OutputStream = 16,
15}