Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in borrow-checker

Borrowed value does not live long enough when creating a Vec

immutable value is still being moved

Am I incorrectly implementing IntoIterator for a reference to a LazyList implementation or is this a Rust bug?

How to iterate over mutable elements inside another mutable iteration over the same elements?

rust borrow-checker

nom parser borrow checker issue

rust borrow-checker nom

How to borrow the T from a RefCell<T> as a reference?

Changing a node in a tree in Rust

rust borrow-checker

Cannot borrow immutable borrowed HashMap cache as mutable in a recursive Fibonacci implementation

rust mutable borrow-checker

How to eliminate partial move when calling map on an iterator

Lifetimes for method returning iterator of structs with same lifetime

Why does taking a static reference to a const return a reference to a temporary variable?

Implicit ownership within Rust [duplicate]

Is there a CloneMut trait?

rust clone borrow-checker

Why must we borrow the type and not the name of the variable

Borrow problems with compiled SQL statements

rust borrow-checker

Can I create a struct in Rust containing a String and a slice of that String?

Borrow checker failing when using traits as type parameter

rust borrow-checker

How can a nested loop with mutations on a HashMap be achieved in Rust?

How do lifetimes in Rust impact mutability?

"Popping" a value from a HashSet

rust hashset borrow-checker