Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

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

Most efficient way to create a HashMap from Vector fields

rust

How do I create an nalgebra static matrix by copying from a dynamic matrix view?

rust nalgebra

When should I use the --bin option for cargo new?

rust rust-cargo

How do I call a C++ constructor using the cxx crate?

c++ rust ffi

Get the file name as a string in Rust

Cargo can't parse the Cargo.toml for url version 0.5.7

rust rust-cargo

Will a PhantomPinned member make my struct have a fixed memory address?

memory rust move-semantics

Is it possible to mark a potentially uninitialized variable as good without using unsafe or panicking?

rust