Skip to main content

SharedMut

Type Alias SharedMut 

Source
pub type SharedMut<T> = Rc<RefCell<T>>;
Expand description

Shared mutable type able to be passed between types allowing for circular referencing and interior mutability.

Aliased Typeยง

pub struct SharedMut<T> { /* private fields */ }