Entradas

Estado del arte de la programación con librerías gráficas en Rust


A Guide to Rust Graphics Libraries as of 2019 from rust

Para ser desarrollador web con Rust

Inspirado en una iniciativa similar existente para Golang, el autor replica un esquema parecido para mostrar los conocimientos necesarios para convertirse en un desarrollador web profesional con Rust:

https://github.com/csharad/rust-web-developer-roadmap/

Una recopilación de características, …

Una recopilación de características, ventajas y desventajas de tres de los más conocidos frameworks para la web con Rust: Rocket, Actix-web y Tower Web:

https://nordicapis.com/3-frameworks-for-building-apis-using-rust/

Moving from Ruby to Rust

Una experiencia de migración de servicios para leer.

https://deliveroo.engineering/2019/02/14/moving-from-ruby-to-rust.HTML

Why Writing a Linked List in (safe) Rust is So Damned Hard

Otro artículo para leer con detalle antes de meterle mano al lenguaje.

«This post is aimed at helping other fledgling rust-learners avoid my mistake. First, by helping Rust learners pick good introductory projects that will fit naturally in idiomatic rust. Second, by helping Rust learners start building Rust-friendly design intuition.»

https://rcoh.me/posts/rust-linked-list-basically-impossible/

Useful Rust macros

Rust macros are a great feature that can reduce code boilerplate and be a time saver for programmers. They also offer flexibility for developers to use metaprogramming to add new features to the language and package them in a way that is easy to integrate into code.

6 useful Rust macros that you might not have seen before from rust

What Not to Do in Rust

Muy interesante para conocer muchas de las propiedades de Rust. También merece la pena leer los comentarios.

What Not to Do in Rust from rust