Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How can I create enums with constant values in Rust?

rust

Is it possible to make a recursive closure in Rust?

recursion closures rust

How do I convert between String, &str, Vec<u8> and &[u8]?

string rust type-conversion

How do I get an absolute value in Rust?

rust

How does Rust provide move semantics?

rust move-semantics

Does Rust have support for functions that return multiple values?

rust

More concise HashMap initialization

rust hashmap

How do I match enum values with an integer?

rust

How to get assembly output from building with Cargo?

assembly rust rust-cargo

What does the box keyword do?

rust

Lifetimes in Rust

rust lifetime

What are Some and None?

rust optional

Why do try!() and ? not compile when used in a function that doesn't return Option or Result?

rust

Meaning of the ampersand '&' and star '*' symbols in Rust

Why can't the C compiler optimize changing the value of a const pointer assuming that two pointers to the same variable would be illegal/UB?

How does Rust implement reflection?

reflection rust

Does println! borrow or own the variable?

rust ownership

How can I create a function with a variable number of arguments?

rust variadic-functions

How do I store a closure in a struct in Rust?

closures rust

How to get a release build with debugging information when using cargo?

rust rust-cargo