We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f737e1 commit f0705f5Copy full SHA for f0705f5
sdk/data_cosmos/tests/query_operations.rs
@@ -4,6 +4,7 @@ use serde::Deserialize;
4
5
mod setup_mock;
6
7
+#[allow(dead_code)]
8
#[tokio::test]
9
async fn query_operations() -> azure_core::Result<()> {
10
#[derive(Deserialize, Debug)]
services/autorust/codegen/src/codegen.rs
@@ -434,7 +434,7 @@ fn idents_to_type_path(idents: Vec<Ident>) -> TypePath {
434
}
435
436
fn optional_idents_to_type_path(idents: Vec<Option<&Ident>>) -> TypePath {
437
- let idents: Vec<Ident> = idents.into_iter().filter_map(|id| id.map(Ident::clone)).collect();
+ let idents: Vec<Ident> = idents.into_iter().filter_map(|id| id.cloned()).collect();
438
idents_to_type_path(idents)
439
440
0 commit comments