(no title)
adsharma | 3 months ago
Beyond adding type annotations, there are other important problems to solve when translating python to rust (the most popular path in py2many so far).
* Translating inheritance -> traits
* Translating exceptions -> Result<T>
* Handling incompatible pattern matching
This is why I've urged FastAPI and pydantic maintainers to give up on BaseModel and use fquery.pydantic/fquery.sqlmodel decorators. They translate much better.
No comments yet.