pub fn extract_pyclass_with_clone<'a, 'py, T: PyClass + Clone>(
obj: Borrowed<'a, 'py, PyAny>,
) -> Result<T, PyClassGuardError<'a, 'py>>Expand description
Extracts a T: PyClass + Clone from a Python object by cloning it out of
the PyClassGuard.