Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Convert Vec<String> into a slice of &str in Rust?

How do I return a reference to something inside a RefCell without breaking encapsulation?

How to set a Rust array length dynamically?

arrays rust

How do I convert a string to a list of chars?

rust

Does Rust have a way to apply a function/method to each element in an array or vector?

arrays vector rust

How to get mutable references to two array elements at the same time?

rust

What is the easiest way to pad a string with 0 to the left?

Sort HashMap data by value

rust

Sending trait objects between threads in Rust

rust trait-objects

Example TCP server written in Rust [closed]

tcp rust

How to convert a Rust char to an integer so that '1' becomes 1?

rust

What is the correct way to use lifetimes with a struct in Rust?

rust lifetime

What's the difference between parametric polymorphism and higher-kinded types?

Getting the absolute path from a PathBuf

rust

How can I randomly select one element from a vector or array?

rust

Does Rust have an equivalent to Python's list comprehension syntax?

Efficiently insert or replace multiple elements in the middle or at the beginning of a Vec?

rust

How to check if a string contains whitespace?

string rust

Why does Rust not have a return value in the main function, and how to return a value anyway?

return main rust

How can I generate a random number within a range in Rust?

random rust rust-obsolete