1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
use std::convert::TryInto; use odbc_sys::{NO_TOTAL, NULL_DATA}; /// Indicates existence and length of a value. #[derive(Debug, PartialEq, Eq)] pub enum Indicator { /// Field does not exist Null, /// Field exists, but its length had not be reported by the driver. NoTotal, /// Fields exists. Value indicates number of bytes required to store the value. In case of /// truncated data, this is the true length of the data, before truncation occurred. Length(usize), } impl Indicator { /// Creates an indicator from an `isize` indicator value returned by ODBC. Users of this crate /// have likely no need to call this method. 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."), ), } } }