Search code examples
How to avoid reinstantiating regex multiple times?...


rustborrow-checker

Read More
How to get multiple mutable references to elements in a Vec?...


vectorrustreferenceborrow-checkerborrowing

Read More
How to create a self referential struct?...


rustlifetimeborrow-checkerunsafe

Read More
How to avoid a clone when passing a value to a consuming function, but needing it back in the event ...


rusterror-handlingcloneborrow-checkerownership

Read More
rustlings move_semantics2 why passing reference doest not work?...


rustborrow-checkerownership

Read More
How to fix my code so the HashMap hmap_for_data holds the counts of items in immutable vector aux_ve...


rustborrow-checker

Read More
How can I pass a reference to a closure in Rust?...


rustreferenceclosuresborrow-checker

Read More
Can I Prove Monotonicity of Allocations to the Rust Borrow Checker...


rustmemory-managementstatic-analysisborrow-checkermutable

Read More
Borrow checker and &mut borrows for generic params...


rustborrow-checker

Read More
How to debug without changing all the function signatures?...


rustborrow-checkermutabilityrust-rustlings

Read More
Idiomatic way to write a decorator over an iterator in Rust...


rustborrow-checker

Read More
Why I "cannot assign to X because it is borrowed" by a temporary created from X, but it wo...


rustborrow-checker

Read More
Understanding Rust Lifetimes in Mixed Mutable and Immutable References...


rustlifetimeborrow-checker

Read More
Rust Borrow Checker Issues...


rustborrow-checker

Read More
Is it sound to use raw pointers to an allocated vector to allow multiple threads to write to nonover...


rustborrow-checkerunsaferayon

Read More
Assigning RefCell method parameter to a local variable produces compile error...


rustlifetimeborrow-checker

Read More
Why does switching from reference to RefCell fail the borrow checker?...


rustborrow-checker

Read More
How to fix "cannot return value referencing local variable" error?...


rustborrow-checkerrust-polars

Read More
How to return a reference with lifetime from RefCell?...


rustreferenceborrow-checker

Read More
Lifetime error in implementation of (mutable) `Iterator` for custom linked list...


rustlifetimeborrow-checker

Read More
Resolving Lifetime Issues When Passing AsRef<Path> Parameter to Function Pointer in Rust...


rustpathborrow-checker

Read More
Why isn't reborrow occured when using it with closures?...


rustreferenceclosuresborrow-checkerreborrow

Read More
Implementing Borrow trait for a type with a lifetime...


rustlifetimeborrow-checker

Read More
How to borrow two disjoint fields when the borrow is behind a method call?...


rustborrow-checker

Read More
Can I mutate a vector with a borrowed element?...


rustreferenceborrow-checkerborrowing

Read More
Iterator over Vec<Vec<i32>>: closure may outlive the current function, but it borrows...


rustclosureslifetimeborrow-checker

Read More
Bad design for Rust program with lifetime and multiple references...


rustreferenceborrow-checkermutable

Read More
Weird compile-time borrow error when using `RefCell<T>`...


rustborrow-checker

Read More
Why this immutable ref field hold a mutable borrow...


rustborrow-checker

Read More
Why does this mutable borrow live beyond its scope?...


rustborrow-checker

Read More
BackNext