chmp commented on issue #5819:
URL: https://github.com/apache/arrow-rs/issues/5819#issuecomment-2142432293

   I thought so, but that does not seem to be the case :) 
   
   <details>
   
   ```rust
   use arrow::datatypes::Field;
   
   trait Example { }
   
   impl Example for Field { }
   
   impl<T: AsRef<Field>> Example for T { }
   ```
   
   ```
      |
   27 |     impl Example for Field { }
      |     ---------------------- first implementation here
   28 |
   29 |     impl<T: AsRef<Field>> Example for T { }
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for 
`arrow_schema::Field`
      |
      = note: upstream crates may add a new impl of trait 
`std::convert::AsRef<arrow_schema::Field>` for type `arrow_schema::Field` in 
future versions
   ```
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to