<!-- Thank you for sharing your idea! Please describe your idea in depth. If you're not sure what to write, imagine the following: - How is this important to you? How would you use it? - Can you think of any alternatives? - Do you have any ideas about how it can be implemented? Are you willing/able to implement it? Do you need mentoring? --> I defined a class ```rust #[pyclass(get_all)] class MyClass { inner: Arc<Vec<String>>, } ``` and I got the error below ```bash `std::sync::Arc<std::vec::Vec<std::string::String>>` cannot be converted to a Python objec ```