Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is it possible to use wasm-bindgen with webpack 5?

"match" compiles into suboptimal asm compared to "if/else"

performance rust

Is it idiomatic Rust to accept a Result<T, E> as a function argument?

error-handling rust idioms

capturing in closures in Rust '21

rust reference closures move

Using Option<String>, and other non-implementers of Display, with askama::Template

rust struct rust-sqlx askama

Do Rust's Cargo packages compile code on my machine?

rust rust-cargo

multiple mutable references to disjoint parts of a slice using split_mut or similar

rust

iterate over all but the last element

rust

Quaternion rotation causes scene to stretch

Is it possible to mutate a struct's field inside a loop?

rust

Code working with elided lifetimes, not with explicit

rust

Boxing a rusqlite Rows iterator

rust rusqlite

How to store async closure created at runtime in a struct?

rust

How to properly filter request logs with Axum?

rust rust-axum rust-tracing

Mimicking the Clone trait in Rust

pointers rust

Returning a trait with an associated type

How do I check if a type implements a trait when implementing a proc macro?

rust rust-proc-macros

Is there a difference between using a reference, and using an owned value in Rust?

How can I compute the Cartesian product of a vector with itself N times?

rust

Rust error expected type `()` found type `(i32, i32)`

for-loop rust numbers tuples