Expand description
A shareable mutable container for the DOM.
Structsยง
- DomRef
Cell ๐A mutable field in the DOM. - Ref ๐Wraps a borrowed reference to a value in a
RefCell
box. A wrapper type for an immutably borrowed value from aRefCell<T>
. - RefCell ๐A mutable memory location with dynamically checked borrow rules
- RefMut ๐A wrapper type for a mutably borrowed value from a
RefCell<T>
.
Functionsยง
- ref_
filter_ ๐map Make a newRef
for a optional component of the borrowed data, e.g. an enum variant.