Compilation error: "defined multiple times" (duplicates name from Azure Core, name collision)
- Dominant language
- Rust
- Stars
- 7
- Forks
- 11
- Avg merge
- 2d 5h
- Merged PRs (30d)
- 5
Description
This affects
* `specification/riskiq/Easm`
* `specification/billingbenefits/BillingBenefits.Management`
* `specification/iotoperationsdataprocessor/IoTOperationsDataProcessor.Management`
It goes like this:
```rs
// easm_client.rs
use crate::generated::models::{
..., Policy, ...,
};
use azure_core::{
...,
http::{
...,
policies::{..., Policy},
...,
},
...,
};
```
Second example is the same as above, but in `models_impl.rs` for `super::JsonFormat` vs `azure_core::http::JsonFormat`.
Third example is the same as above, but in `io_t_operations_data_processor_pipelines_client.rs` for `crate::generated::models::Pipeline` vs `azure_core::http::Pipeline`.
Contributor guide
Assessment
This issue has not been assessed yet.