Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

What is the equivalent of a safe memset for slices?

rust

How to allocate structs on the heap without taking up space on the stack in stable Rust?

rust

How can I mutate a shared variable from multiple threads, disregarding data races?

rust

Where does `multirust` install the Rust language source code?

rust rust-cargo

What's the easiest way to read several ints from stdin if it's ok to fail?

rust

How to operate on 2 mutable slices of a Rust array?

rust slice lifetime

How to convert a string to an enum?

enums casting rust

How do I use Rayon with an existing iterator?

rust rayon

What does it mean when "method exists but trait bounds not satisfied"?

rust

Can Rust code compile without the standard library?

rust

Is there a way to initialize an empty slice?

arrays rust slice

Can I create a mutable slice &mut [u8] from a single byte (u8)?

rust

Usability of infinite loop in Rust

rust infinite-loop

What's the difference between a trait's generic type and a generic associated type?

From and Into traits and conversion of usize to f64

type-conversion rust

Cannot use moved BufReader after for loop with bufreader.lines()

rust traits

Why is the memory address printed with {:p} much bigger than my RAM specs?

memory rust

Modifying chars in a String by index

rust

How can I get an array or a slice from a raw pointer?

rust unsafe

How do I implement the Fn trait for one struct for different types of arguments?