#interior-mutability #mutability #cell #write-once

mutate_once

Interior mutability, write-once and borrowable as plain &T

2 releases

0.1.1 Dec 12, 2019
0.1.0 Jul 25, 2019

#181 in Caching

Download history 66449/week @ 2023-12-18 22524/week @ 2023-12-25 68744/week @ 2024-01-01 86383/week @ 2024-01-08 37077/week @ 2024-01-15 28320/week @ 2024-01-22 28231/week @ 2024-01-29 34643/week @ 2024-02-05 48522/week @ 2024-02-12 33993/week @ 2024-02-19 42711/week @ 2024-02-26 40460/week @ 2024-03-04 40056/week @ 2024-03-11 40398/week @ 2024-03-18 36881/week @ 2024-03-25 38635/week @ 2024-04-01

159,078 downloads per month
Used in 82 crates (via kamadak-exif)

BSD-2-Clause

13KB
176 lines

Interior mutability, write-once and borrowable as plain &T

This library provides interior mutability that can be borrowed as plain immutable references &T in exchange for the write-once, read-many restriction.

Unlike std::cell::Cell or std::cell::RefCell, a plain immutable reference &T can be taken from MutOnce<T>. Once an immutable reference is taken, the value can never be mutated (even after all references are dropped).

The use cases include caching getter and delayed evaluation.

Usage

Run "cargo doc" in the source directory to generate the API reference. It is also available online at https://docs.rs/mutate_once.

An example follows:

  struct Container {
      expensive: MutOnce<String>,
  }
  impl Container {
      fn expensive(&self) -> &str {
          if !self.expensive.is_fixed() {
              let mut ref_mut = self.expensive.get_mut();
              *ref_mut += "expensive";
              // Drop `ref_mut` before calling `get_ref`.
          }
          // A plain reference can be returned to the caller
          // unlike `Cell` or `RefCell`.
          self.expensive.get_ref()
      }
  }
  let container = Container { expensive: MutOnce::new(String::new()) };
  assert_eq!(container.expensive(), "expensive");

No runtime deps