Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Compiling Rocket in Bazel

rust bazel rust-rocket

Can I create a struct in Rust containing a String and a slice of that String?

How can I have a property that takes a mutable reference that will outlive itself?

rust

How to define a Vec of Enums as a field in rust sqlx model

rust rust-sqlx

What is the function to get the quotient and remainder (DIVMOD) for rust?

rust division mod

Initialize rest of array with a default value

rust

Is Option<T> optimized to a single byte when T allows it?

rust option-type

Borrow checker failing when using traits as type parameter

rust borrow-checker

Why can I not borrow a boxed vector content as mutable?

vector rust

How can I prevent linking to the same native library by multiple dependencies?

openssl rust rust-cargo

Using callbacks on trait objects

rust

How to implement a Future or Stream that polls an async fn?

What are the differences between the GNU and MSVC Rust toolchain?

rust

How do I share a mutable object between threads using Arc?

Include git commit hash as string into Rust program

rust rust-cargo

Concisely initializing a vector of Strings

rust

How to iterate over Unicode grapheme clusters in Rust?

unicode utf-8 rust

What does "missing lifetime specifier" mean when storing a &str in a structure?

rust

Which of these implementations of seqlock are correct?

In Rust, what's the difference between "shadowing" and "mutability"?