Enum odbc_safe::Indicator [] [src]

pub enum Indicator {
    Length(SQLLEN),
    NoTotal,
    Null,
}

Used to indicate the required target buffer length.

Variants

The length required to hold all the data.

Driver does not know how much data is available.

The value to be retrieved is NULL.

Trait Implementations

impl Debug for Indicator
[src]

Formats the value using the given formatter.

impl Clone for Indicator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Indicator
[src]

impl From<SQLLEN> for Indicator
[src]

Performs the conversion.