devela::sys::mem

Module cell

Source
Expand description

Shareable mutable containers.

Extends: std::{cell}


Structs§

  • core A mutable memory location.
  • core A value which is initialized on the first access.
  • core A cell which can nominally be written to only once.
  • core A wrapper type for an inmutably borrowed value from a RefCell<T>
  • core A mutable memory location with dynamically checked borrow rules.
  • core A wrapper type for a mutably borrowed value from a RefCell<T>
  • core The core primitive for interior mutability in Rust.

Traits§

  • A trait that provides additional methods for Cell<Option>.