As of right now its not possible to pickle classes created by PyO3.
This feature would be invaluable for situations where some form of persistence would be desireable.
As of right now it has trouble pickling after I call
#[new]
fn __new__(obj: &PyRawObject) -> PyResult<()>{
Otherwise the .__dict__ attributes are maintained prior to initialization with __new__
As of right now its not possible to pickle classes created by PyO3.
This feature would be invaluable for situations where some form of persistence would be desireable.
As of right now it has trouble pickling after I call
Otherwise the
.__dict__attributes are maintained prior to initialization with__new__