Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

VSCode rust format on save line length

visual-studio-code rust

How can I wait for a specific result from a pool of futures with async rust?

Rust serde deserialize dynamic trait

rust serde trait-objects

How do I sort data according to diferent criteria, without having to copy it?

rust

What is the best way to implement optional library dependencies in Rust?

Are mutable static primitives actually `unsafe` if single-threaded?

rust embedded unsafe

mem::transmute error when bounded to const N

rust

How do I use print! with Rocket when compiling for release?

rust rust-rocket

Is the final comma in Rust struct definitions necessary?

rust

Failed to select a version for the requirement `rand = "^0.9.0"`

rust rust-cargo

How to find an element in vector of Option<String> [duplicate]

vector rust find closures

`.ok_or()` works but `.ok_or_else()` doesn't work even the type signature is the same

rust

Moving value out of the Box by dereferencing (and what it is desugared into)?

Should I use `stringify!` for non-Rust source code strings like SQL queries?

sql rust

How do I parse a JSON body in Rocket when the content type is not "application/json"?

json rust serde rust-rocket

Is there a range expression that can be used to refer to the last N elements of a slice?

rust

How to share a pointer to a mutable variable to a thread? [duplicate]

rust thread-safety uci