Search code examples
When variables move in rust does it do variable shadowing under the hood?...


rustownership

Read More
Rust: Safely terminate running threads inside a ThreadPool?...


rustborrow-checkerownership

Read More
Why I get "temporary value dropped while borrowed" if I assign, but not when passing via f...


rustborrow-checkerownershipborrowing

Read More
Matching with Rc<RefCell<T>>...


rustpattern-matchingownership

Read More
How to properly move ownership in an inner loop in Rust?...


rustownership

Read More
Can't use struct after its partially moved by closure...


rustclosuresownershiprust-crates

Read More
How can I use polymorphism with the Deref trait to have a a single object that can be represented by...


rustownership

Read More
Ownership issues when attempting to work with member variables passed to closure in member method...


rustclosuresownership

Read More
Erronous mutable borrow (E0502) when trying to remove and insert into a HashMap...


rusthashmapborrow-checkerownership

Read More
Accessing a nested HashMap in Rust with None...


rusthashmapownership

Read More
Variable is moved to closure even when it is not executed...


rustclosuresownership

Read More
Is there any use for `str` in Rust?...


stringrustownership

Read More
Owning iterator in Rust?...


rustiteratorownership

Read More
What happens when you mutably shadow a Vector in Rust?...


rustmove-semanticsownershipshadowing

Read More
Return owned string in warp::reply::with_status...


httprustborrow-checkerownershiprust-warp

Read More
Issue with string borrowing and println in Rust...


rustborrow-checkerownership

Read More
Rust 'use of moved value' error when passing value into Enum variant...


rustenumsownership

Read More
Can I somehow modify a '&' array?...


rustownershipborrowing

Read More
How to call regexes in a loop without cloning the data...


rustborrow-checkerownershipborrowing

Read More
Why does `a` keeps the ownership after `let b = &*&a;` in Rust?...


rustownership

Read More
Is there a safe way to temporarily retrieve an owned value from a mutable reference in Rust?...


rustunsafeownership

Read More
How to fix Rust error "value used here after move"?...


rustcloneownershipborrowing

Read More
Mutable and Immutable reference inside println...


structrustownership

Read More
Rust - Collecting slices of a Vec in a recursive function...


recursionrustlifetimehuffman-codeownership

Read More
String concatenation in rust and borrowing...


rustownershipborrowing

Read More
Reusing matched variable inside of match statement...


rustpattern-matchingmatchborrow-checkerownership

Read More
How to return a single element from a Vec from a function?...


vectorrustreferenceborrow-checkerownership

Read More
Cannot move io::Error out of Peekable Result...


error-handlingrustiteratorborrow-checkerownership

Read More
Match statement using moved matched variable throwing compiler error...


rustpattern-matchingmatchborrow-checkerownership

Read More
Is there a difference between using a reference, and using an owned value in Rust?...


rustreferenceborrow-checkerownershipborrowing

Read More
BackNext