Rust Bindings for the Python Interpreter

Rust bindings for the Python interpreter. Contribute to PyO3/pyo3 development by creating an account on GitHub. Read more

Similar

A half hour to learn Rust

In order to increase fluency in a programming language, one has to read a lot of it. But how can you read a lot of it if you don't know what it means? In this article, instead of focusing on one or two concepts, I'll try to go through as many Rust snippet... (more…)

Read more »

Type Erasure in Rust

Rust traits have the neat property where you can use them either as generic bounds or as dynamic dispatch, with the &dyn MyTrait syntax. The latter is necessary in heterogeneous scenarios, where you want to use multiple concrete types together that al... (more…)

Read more »