Enum odbc_api::buffers::Indicator [−][src]
pub enum Indicator {
Null,
NoTotal,
Length(usize),
}
Expand description
Indicates existence and length of a value.
Variants
Field does not exist
Field exists, but its length had not be reported by the driver.
Length(usize)
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.
Tuple Fields of Length
0: usize
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Indicator
impl UnwindSafe for Indicator
Blanket Implementations
Mutably borrows from an owned value. Read more