Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

When to use AsRef or other conversion traits for string-like type

rust

How do I make a pointer hashable?

rust

How to avoid temporary allocations when using a complex key for a HashMap?

rust

How to implement idiomatic operator overloading for values and references in Rust?

operator-overloading rust

How to require a trait in another trait correctly?

rust

How can I pass a variable initialized in main to a Rocket route handler?

rust rust-rocket

"cannot infer type for `_`" when using map on iter in Rust

arrays rust inference

Are operators in core really defined circularly?

rust operators

What is #[warn(unstable)] about in Rust?

io rust

How can I get password input without showing user input?

rust

What is the Rust equivalent of `size_t`?

rust

Nested iteration in Rust macros

rust

How to format output to a byte array with no_std and no allocator?

rust bare-metal

How can we write a generic function for checking Serde serialization and deserialization?

Do logical operators short-circuit in Rust?

rust

Getting "temporary value dropped while borrowed" when trying to update an Option<&str> in a loop

loops rust borrow-checker

Rust inheritance: call parent method

rust

Can I write an Iterator that mutates itself and then yields a reference into itself?

rust

How can I implement Ord when the comparison depends on data not part of the compared items?

rust traits

Where should I put test utility functions in Rust?

unit-testing testing rust