mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-30 14:34:22 +01:00
While working on #2151 I saw myself forced to do things like: ```rust assert_eq!( 6, *result .next() .await? .unwrap() .get_value(0)? .as_integer() .unwrap() ); ``` Just to get a simple value from a row, now with this PR users can just do: ```rust assert_eq!(6, result.get::<i32>(0)?); ``` (Thanks libsql devs, this is so much better!) Closes #2377