We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d669be commit 31411bbCopy full SHA for 31411bb
sqlx-sqlite/src/types/url.rs
@@ -20,7 +20,9 @@ impl Type<Sqlite> for Url {
20
21
impl Encode<'_, Sqlite> for Url {
22
fn encode_by_ref(&self, args: &mut SqliteArgumentsBuffer) -> Result<IsNull, BoxDynError> {
23
- args.push(SqliteArgumentValue::Text(Arc::new(self.as_str().to_string())));
+ args.push(SqliteArgumentValue::Text(Arc::new(
24
+ self.as_str().to_string(),
25
+ )));
26
27
Ok(IsNull::No)
28
}
0 commit comments