Home
last modified time | relevance | path

Searched refs:get_unwrap (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/rusqlite/src/types/
Dmod.rs216 let s1: Option<String> = row1.get_unwrap(0); in test_option()
217 let b1: Option<Vec<u8>> = row1.get_unwrap(1); in test_option()
224 let s2: Option<String> = row2.get_unwrap(0); in test_option()
225 let b2: Option<Vec<u8>> = row2.get_unwrap(1); in test_option()
Dto_sql.rs371 let found_id: Uuid = row.get_unwrap(0); in test_uuid()
372 let found_label: String = row.get_unwrap(1); in test_uuid()
/external/rust/crates/rusqlite/src/vtab/
Dcsvtab.rs410 assert_eq!(row.get_unwrap::<_, i32>(0), 2); in test_csv_cursor()
/external/rust/crates/rusqlite/src/
Drow.rs257 pub fn get_unwrap<I: RowIndex, T: FromSql>(&self, idx: I) -> T { in get_unwrap() method
Dlib.rs1775 assert_eq!(5, r.get_unwrap::<_, i32>(0)); in test_dyn_box()
1795 assert_eq!(1, r.get_unwrap::<_, i32>(0)); in test_params()