Search code examples
Can I Prove Monotonicity of Allocations to the Rust Borrow Checker...


rustmemory-managementstatic-analysisborrow-checkermutable

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
Porting C Code with Mutable Borrows - Error During Runtime (nappgui Example)...


rustborrow-checker

Read More
How do I initialize two variables in match statement without angering borrow checker?...


rusttuplesborrow-checkerrusqlite

Read More
Return owned value and reference to value...


rustborrow-checkerownership

Read More
Rust: return immutable borrow after modifying...


rustborrow-checker

Read More
Cannot borrow *self as immutable, but I cannot find a way around...


rustborrow-checker

Read More
Borrow some mutable value twice when the mutable value is known to be immutable...


rustborrow-checker

Read More
Why does my function not drop the borrowed immutable reference?...


rustreferenceborrow-checker

Read More
Looking for an idiomatic way to build a singly-linked list in Rust iteratively, with a step-by-step ...


rustborrow-checker

Read More
Why is my type-parameter in this impl block unconstrained?...


genericsrusttraitsborrow-checker

Read More
BackNext