You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the latest nightly, the build fails with a bunch of errors in TryFrom like the following one.
note: candidate #1 is defined in an impl of the trait `conversion::PyTryFrom` for the type `objects::sequence::PySequence`
--> pyo3/src/objects/sequence.rs:252:5
|
252 | fn try_from(value: &PyObjectRef) -> Result<&PySequence, Self::Error> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: candidate #2 is defined in an impl of the trait `std::convert::TryFrom` for the type `_`
error[E0034]: multiple applicable items in scope
--> pyo3/src/objects/stringutils.rs:60:9
|
60 | PyString::try_from(ob)?.to_string()
| ^^^^^^^^^^^^^^^^^^ multiple `try_from` found
|
This is most likely caused by the stabilization of TryFrom in rust-lang/rust#49305
The text was updated successfully, but these errors were encountered:
With the latest nightly, the build fails with a bunch of errors in
TryFrom
like the following one.This is most likely caused by the stabilization of TryFrom in rust-lang/rust#49305
The text was updated successfully, but these errors were encountered: