Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

What is the difference between `&str` and `&'static str` in a static or const?

rust

How can I add the to_string() functionality to an enum?

Retrieving backtrace from a panic in hook in Rust?

logging rust backtrace panic

What is the difference between futures::select! and tokio::select?

Mixing anyhow::Result with std::io::Result

rust

What is the implicit lifetime for the 1st argument when the 2nd argument is annotated with 'a?

rust lifetime

What benefits are there with making println a macro?

rust println

How to deny/ban the use of certain external functions

rust

Getting the error "the trait Sized is not implemented" when trying to return a value from a vector

rust

Mutating an item inside of nested loops

rust nested-loops

How to Iterator::chain a vector of iterators?

rust

Why do Arc and Mutex allow me to change the value of an immutable variable?

rust

Why do I get an error about non-exhaustive patterns?

rust pattern-matching

What is the `PhantomData` actually doing in the implementation of `Vec`? [duplicate]

rust

How to transfer ownership of a value to C code from Rust?

rust ffi ownership

What is the right way to write double-checked locking in Rust?

Taking multiple values in an argument in Clap

rust clap

Is there a way to import macros from an external crate during tests only, without any warnings?

rust

What is the <- symbol in Rust?

How to move a value out of an object-safe trait object?