Searched defs:RowEntity (Results 1 – 1 of 1) sorted by relevance
| /base/request/request/common/database/src/ |
| D | wrapper.rs | 140 type RowEntity; typedef 171 fn GetI32(row: Pin<&mut RowEntity>, index: i32, value: &mut i32) -> i32; in GetI32() 172 fn GetI64(row: Pin<&mut RowEntity>, index: i32, value: &mut i64) -> i32; in GetI64() 173 fn GetBool(row: Pin<&mut RowEntity>, index: i32, value: &mut bool) -> i32; in GetBool() 174 fn GetDouble(row: Pin<&mut RowEntity>, index: i32, value: &mut f64) -> i32; in GetDouble() 175 fn GetString(row: Pin<&mut RowEntity>, index: i32, value: &mut String) -> i32; in GetString() 176 fn GetBlob(row: Pin<&mut RowEntity>, index: i32, value: &mut Vec<u8>) -> i32; in GetBlob() 177 fn IsNull(row: Pin<&mut RowEntity>, index: i32) -> bool; in IsNull()
|