pub fn pyobject_to_account_any(
py: Python<'_>,
account: Py<PyAny>,
) -> PyResult<AccountAny>Expand description
Converts a Python account object into a Rust AccountAny enum.
§Errors
Returns a PyErr if:
- retrieving the
account_typeattribute fails. - extracting the object into the account type’s concrete class fails.
- the
account_typeis unsupported.