Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Stuck with lifetimes: How to write a wrapper struct around a shared library?

rust lifetime

How do I get the current working directory with the least amount of dependencies possible?

Parsing Attribute Macro Arguments in Rust

rust rust-macros

Rust in Docker image: exec no such file or directory

Clarification of Rust File Paths and access

rust rust-cargo

Can a trait have a supertrait that is parameterized by a generic?

Why does the Rust documentation say that a while loop over an array is slower than a for loop?

rust

Is there a way to embed sequence diagrams in rustdoc?

rust rustdoc

What's the practical difference between fn item and fn pointer?

Why does &str not implement IntoIterator?

rust

syntax error near unexpected token `(' in rust [closed]

syntax rust

How do I convert an async / standard library future to futures 0.1?

rust future actix-web

Why can a non-capturing closure be used after transferring ownership?

Remote debug of Rust program in Visual Studio Code

Idiomatic way to call an async Rust function that takes a reference, when I'd want to pass ownership to the function

rust

Cannot assign to a variable used in a closure because it is borrowed

rust closures

Rust egui window size and dark mode

user-interface rust egui

"cannot borrow `*self` as immutable because it is also borrowed as mutable" -- does the compiler really need to be this strict?

rust

Why doesn't rust complain when you drop a value that lives on the stack

rust

Axum Middleware to log the response body

rust rust-axum