Search code examples
How can I pass a Vector inside a for loop that is iterating through the Vector...


for-looprustimmutabilitymutableborrowing

Read More
Understanding non lexical lifetimes when calling functions that return reference...


rustborrow-checkerownershipborrowing

Read More
Can I reassign a mutable slice reference to a sub-slice of itself?...


rustlifetimeborrowing

Read More
Cannot infer an appropriate lifetime for a closure that returns a reference...


rustclosuresownershipborrowing

Read More
Trimming lines of input for a set in Rust...


rustborrowing

Read More
Do I have to create distinct structs for both owned (easy-to-use) and borrowed (more efficient) data...


rustborrowingowned-types

Read More
How to create a value with reference-counted references to itself while checking an already-borrowed...


rustmutablereference-countingborrowingrefcell

Read More
How do I mutate in a match which borrows an immutable value?...


rustownershipborrowing

Read More
How to initialize an array and save references to its items?...


rustborrow-checkerownershipborrowing

Read More
Does `str` implement `Borrow<str>`?...


rustborrowing

Read More
Rust 'borrowed value does not live long enough' while assigning to a static variable...


ruststaticborrow-checkerborrowing

Read More
How to call a method while iterating in Rust...


rustborrowingmutability

Read More
How to convert ndarray::ArrayView to &ndarray::Array without copying?...


multidimensional-arrayrustborrowing

Read More
Ownership of values passed to overloaded PartialEq...


rustoperator-overloadingownershipborrowing

Read More
Implementing a lazy load in by way of enum type in Rust...


rustlazy-loadingborrowing

Read More
How can multiple threads share an iterator?...


multithreadingrustborrowing

Read More
Understanding of this Rust lifetime example...


rustlifetimeborrowing

Read More
Reading bytes from a file and parsing them with `pom` parser library...


filerustborrow-checkerborrowing

Read More
"if" statement gets executed when the condition is "false" in a Rust program, ho...


if-statementscoperustborrowing

Read More
Temporary value dropped while borrowed, but I don't want to do a let...


rustborrowing

Read More
Why Rust mutable borrow occurs here?...


rustmutableborrowing

Read More
borrowed value does not live long enough in loop...


referencerustlifetimeborrowing

Read More
Cannot obtain a mutable reference when iterating a recursive structure: cannot borrow as mutable mor...


rustmutableborrowing

Read More
Cannot borrow in a Rc as mutable...


rustborrowingactix-web

Read More
How does multiple mutable reference prevention work in Rust?...


rustborrow-checkerborrowing

Read More
Array of methods in Rust...


rustborrow-checkerborrowing

Read More
How to use `AsRef` arguments?...


referencerustlifetimeborrow-checkerborrowing

Read More
How to use read-only borrowed Rust data by multiple Java threads?...


rustjava-native-interfaceborrowing

Read More
Check if a string slice is contained in HashSet<Rc<String>> without allocating a new Str...


rustsmart-pointershashsetborrowing

Read More
I want to pass reference of a vector to a function then modify it there and return as vector...


functionvectorreferencerustborrowing

Read More
BackNext