docs.rs failed to build schroedinger_box-0.0.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: schroedinger_box-0.0.2

SchroedingerBox

A box that contains many values, but collapses into one when opened (read from) for the first time.

Example

let cat_is_alive = SchroedingerBox::new(vec![true, false]);
// Here the cat is both dead and alive, but when we observe it...
let state = *cat_is_alive;
// ...it collapses into one state.
assert_eq!(state, *cat_is_alive);