use std::convert::TryInto;
use odbc_sys::{NO_TOTAL, NULL_DATA};
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub enum Indicator {
Null,
NoTotal,
Length(usize),
}
impl Indicator {
pub fn from_isize(indicator: isize) -> Self {
match indicator {
NULL_DATA => Indicator::Null,
NO_TOTAL => Indicator::NoTotal,
other => Indicator::Length(
other
.try_into()
.expect("Length indicator must be non-negative."),
),
}
}
pub fn to_isize(self) -> isize {
match self {
Indicator::Null => NULL_DATA,
Indicator::NoTotal => NO_TOTAL,
Indicator::Length(len) => len.try_into().unwrap(),
}
}
}