rene 0.2.0

Computational geometry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(super) trait TryFromPyAny
where
    Self: Sized,
{
    fn try_from_py_any(
        value: &pyo3::Bound<'_, pyo3::PyAny>,
        py: pyo3::Python<'_>,
    ) -> pyo3::PyResult<Self>;
}

pub(super) trait TryToPyAny {
    fn try_to_py_any(
        self,
        py: pyo3::Python<'_>,
    ) -> pyo3::PyResult<pyo3::Bound<'_, pyo3::PyAny>>;
}