Search code examples
How to understand the associativity of `&*` in a chained call composed of `as_ref()` and `as_ptr...


pointersrustreferencedereferencerefcell

Read More
Is RefCell::as_ptr guaranteed to stay the same for a given RefCell?...


rustlinked-listhashsetrefcell

Read More
What structure can be made to avoid having to use RefCell?...


recursionrustborrow-checkerrefcell

Read More
how to clone an Rc from a method that takes in &self...


rustselfreference-countingcyclic-referencerefcell

Read More
Generic struct that can hold either Rc<RefCell<T>> or Arc<RwLock<T>>...


genericsrustsmart-pointersrefcell

Read More
Why doesn't std::cell::Ref use a reference instead of NonNull?...


rustlanguage-lawyerunsaferefcell

Read More
Is it safe to make RefCell Sync+Send if the data it contains is protected by RwLock?...


multithreadingrustrefcellrwlock

Read More
Rust, how to copy the inner value out from Rc<RefCell<T>> and return it?...


rustborrow-checkerrefcell

Read More
questions related to rust RefCell<T> and Ref...


rustrefrefcell

Read More
Borrow mutable inside of `match` arm...


rustborrow-checkerrefcell

Read More
Rust : drop(&RefMut) instead of drop(RefMut)?...


rustborrow-checkerrefcell

Read More
Changing contents of an array via its reference...


rustsmart-pointersrefcell

Read More
how to match RefMut<Enum>?...


rustrefcell

Read More
Rust Rc<RefCell>::borrow_mut returns &mut Rc<RefCell<T>> instead of RefMut<...


rustborrow-checkerrefcell

Read More
Understanding usage of Rc<RefCell<SomeStruct>> in Rust...


rustownershiprefcell

Read More
Assignment to a borrowed in RefCell...


rustborrow-checkerrefcell

Read More
How to handle "temporary value dropped" error when adapting Box-based tree structure to Rc...


rusttreerefcell

Read More
Is RefCell ever useful on its own...


rustrefcell

Read More
Rc/RefCell with parent of same struct...


rustrcrefcell

Read More
How to return an *optional* reference into RefCell contents...


rustrefcell

Read More
Is RefCell an appropriate workaround to borrow two mutable elements from a vector?...


rustborrow-checkerrefcell

Read More
Peekable content is None after refactor the code...


rustrefreference-countingrefcell

Read More
Rust: How to return a reference to an Rc<RefCell<HashMap<K, V>> value?...


rustborrow-checkerrefcell

Read More
Rust can't modify RefCell in Rc...


rustrcrefcell

Read More
Implement Borrow on something behind a RefCell?...


rusthashhashmaprefcountingrefcell

Read More
Hash trait does not work for Rc<RefCell<T>> in enum...


rusthashenumstraitsrefcell

Read More
Mutating fields of Rc Refcell depending on its other internal fields...


rustborrow-checkerrcrefcell

Read More
How to build a pool of mutable Vecs that get reused on Drop?...


rustpoolrefcell

Read More
Immutable reference to data in RefCell...


vectorindexingrustimmutabilityrefcell

Read More
"cannot return value referencing temporary value" and interior mutability in Rust...


rustownershipinterior-mutabilityrefcell

Read More
BackNext