pyo3/conversions/std/
cell.rs1use std::cell::Cell;
2
3use crate::{
4 conversion::IntoPyObject, types::any::PyAnyMethods, Bound, FromPyObject, PyAny, PyResult,
5 Python,
6};
7
8impl<'py, T: Copy + IntoPyObject<'py>> IntoPyObject<'py> for Cell<T> {
9 type Target = T::Target;
10 type Output = T::Output;
11 type Error = T::Error;
12
13 #[inline]
14 fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
15 self.get().into_pyobject(py)
16 }
17}
18
19impl<'py, T: Copy + IntoPyObject<'py>> IntoPyObject<'py> for &Cell<T> {
20 type Target = T::Target;
21 type Output = T::Output;
22 type Error = T::Error;
23
24 #[inline]
25 fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
26 self.get().into_pyobject(py)
27 }
28}
29
30impl<'py, T: FromPyObject<'py>> FromPyObject<'py> for Cell<T> {
31 fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self> {
32 ob.extract().map(Cell::new)
33 }
34}