mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
Use ::std::result::Result::Ok in output.rs (#2519)
This commit is contained in:
parent
253d8c9f69
commit
de90a55253
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ pub fn quote_query_as<DB: DatabaseExt>(
|
|||
|
||||
#(#instantiations)*
|
||||
|
||||
Ok(#out_ty { #(#ident: #var_name),* })
|
||||
::std::result::Result::Ok(#out_ty { #(#ident: #var_name),* })
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue