Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How can you get the modification time of a file in a cross platform manner?

rust

Extend Iterator with a "mean" method

rust

How to deserialize in Rust (using serde) optional json parameter that can be either string or string array

rust serde

Why do I need to repeat my generic type constraint when implementing a trait? [duplicate]

generics types rust

Why does running objcopy --strip-all in a rust program halves their size?

rust filesize objcopy

Solana Anchor How to withdraw tokens from program PDA?

rust solana

Do lifetime parameters in `*(&'a mut self)` methods confuse the BorrowChecker?

rust

How to express that a returned associated type implements a trait?

generics rust traits

How is it possible to keep Rust module documentation in separate Markdown files?

rust documentation rustdoc

Rust not printing to terminal

rust

Why can't the compiler detect that functions are constant without annotating them with const?

rust ctfe

How do I join a char vector in Rust

string rust iterator char

Create variant without parameter from an empty tuple

rust

How can I display an enum in lowercase?

rust enums io

Idiomatic way to only get insides of `Some` from a vector of options?

vector rust iteration

Cargo lambda build does not find OpenSSL development headers

Avoiding lifetime parameters in rust for a struct?

rust

Lifetime when exchanging reference

How to know if all slice elements are equal, and if so, return a reference to the first one?