List Question
20 TechQA 2024-02-06T09:00:36.817000Rust `the trait bound `Response<()>: Copy` is not satisfied`
58 views
Asked by ArthurZhou
How to count the number of filtered elements in a chain of iterator adapters
69 views
Asked by lpewewq
borrowed value does not live long enough in Rust
56 views
Asked by ramailm
Why do arrays automatically convert themselves into slices?
57 views
Asked by Bernard
Why is this considered borrowed
72 views
Asked by Tiago Dias
When a type is `Copy` should a method move (`self`) or borrow (`&self`) the type?
226 views
Asked by scottwillmoore
How to release a mutable borrow after method call which takes mutable reference to self?
20 views
Asked by FinleyGibson
Rust HashMap insert method producing borrow-checker error with generated string
102 views
Asked by acctech007
Cannot borrow `*self`. How to make the fn work without string cloning?
145 views
Asked by some_engineer
How can I wrap the read portion of a struct which implements both Read and Write in a BufReader?
149 views
Asked by curious
Work around borrow issue generates ugly code to implement a registry of objects. Is there another way?
40 views
Asked by Zhou Lebo
Why are match statements more picky about reference types than function parameters?
90 views
Asked by Smarwell
Kucoin API 'Invalid KC-API-SIGN'
1.2k views
Asked by Jaysin Koregaokar
Rust: what is different in the slice clone method?
106 views
Asked by Frank Schwidom
Rust private function throws error when trying to return tuple of values
70 views
Asked by Abe Hoffman
Rust russh async read/write
227 views
Asked by Khadim Fall
How to create factory that dynamically creates values and returns borrows to them?
105 views
Asked by Kamil Szot
Why does calling .to_string() on a String avoid a move error? Isn't it a no-op?
203 views
Asked by Kalle Svensson
How does Rust calculate lifetime of a moved value?
118 views
Asked by E. Timotei
What do the '&&' and star '**' symbols mean in Rust?
167 views
Asked by dd.ho