Struct rsfbclient_rust::XSqlVar[][src]

pub struct XSqlVar {
    pub sqltype: i16,
    pub scale: i16,
    pub sqlsubtype: i16,
    pub data_length: i16,
    pub null_ind: bool,
    pub field_name: String,
    pub relation_name: String,
    pub owner_name: String,
    pub alias_name: String,
}

Sql query column information

Fields

sqltype: i16

Sql type code

scale: i16

Scale: indicates that the real value is data * 10.pow(scale)

sqlsubtype: i16

Blob subtype code

data_length: i16

Length of the column data

null_ind: bool

Null indicator

field_name: Stringrelation_name: Stringowner_name: Stringalias_name: String

Column alias

Implementations

impl XSqlVar[src]

pub fn coerce(&mut self) -> Result<(), FbError>[src]

Coerces the data types of this XSqlVar as necessary

Trait Implementations

impl Debug for XSqlVar[src]

impl Default for XSqlVar[src]

Auto Trait Implementations

impl RefUnwindSafe for XSqlVar

impl Send for XSqlVar

impl Sync for XSqlVar

impl Unpin for XSqlVar

impl UnwindSafe for XSqlVar

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,