Struct rsfbclient_rust::XSqlVar
source · [−]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,
}Expand description
Sql query column information
Fields
sqltype: i16Sql type code
scale: i16Scale: indicates that the real value is data * 10.pow(scale)
sqlsubtype: i16Blob subtype code
data_length: i16Length of the column data
null_ind: boolNull indicator
field_name: Stringrelation_name: Stringowner_name: Stringalias_name: StringColumn alias
Implementations
Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more