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: 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: String
relation_name: String
owner_name: String
alias_name: String
Column 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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