mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-10-31 05:48:56 +08:00 
			
		
		
		
	Merge pull request #478 from gwenn/fallible-iterator
Make `Rows` implement `FallibleStreamingIterator`
This commit is contained in:
		| @@ -151,7 +151,7 @@ impl FromSql for bool { | ||||
|  | ||||
| impl FromSql for String { | ||||
|     fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self> { | ||||
|         value.as_str().map(|s| s.to_string()) | ||||
|         value.as_str().map(ToString::to_string) | ||||
|     } | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user