Entradas
Why does parse() require an except() or unwrap() method?
/0 Comentarios/en Marcadores /por Manuel CilleroSpoiler, es para controlar la interpretación de cadenas que no sean números. Pero como siempre ocurre en la comunidad Rust, lo explican muy bien y muy detallado. Ideal para aprender.
Why does parse() require an except() or unwrap() method? from rust
Esto me interesa, ¿plugins con Rust sin recompilar?
/0 Comentarios/en Marcadores /por Manuel CilleroHow would you go about creating an app architecture that supports plugins? I’m thinking about Java where you can just drop .jar files and have them being loaded into your app without the need to recompile the main app.
https://www.reddit.com/r/rust/comments/ble186/how_would_you_go_about_creating_an_app/
Estado del arte de la programación con librerías gráficas en Rust
/0 Comentarios/en Marcadores /por Manuel CilleroUseful Rust macros
/0 Comentarios/en Marcadores /por Manuel CilleroRust 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
sfsdb: A high performance database you already know how to use
/0 Comentarios/en Archivo de notas /por Manuel CilleroWhat Not to Do in Rust
/0 Comentarios/en Marcadores /por Manuel CilleroMuy interesante para conocer muchas de las propiedades de Rust. También merece la pena leer los comentarios.
A basic web application with Rust and Actix-web
/0 Comentarios/en Archivo de notas /por Manuel CilleroThe actix framework handles requests asynchronously, but in this case the handlers themselves are not implemented asynchronously, for example using futures. I decided to keep it simple at first.