Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to change the value of an Arc<u64> in a struct?

rust

How to set cfg options to compile conditionally?

Is there a warning for undocumented sections?

Why does the Rust standard library have so much unsafe code?

rust unsafe

Is there a way to "check and set" the value of a `std::cell::Cell`?

rust llvm atomic

"borrowed value does not live long enough" when using `as_slice` [duplicate]

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