docs.rs failed to build forever-1.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.

Forever

A never-dropping data store

Defines the Forever struct, which provides immutable access to data that is Sync, Send, and is never dropped. You can think of it as an Arc with an always positive refcount.

Example:

fn main() {
    let a = Forever::new(7u); // 7u will never be dropped.
    let b = a.clone() // Same underlying data.

    spawn(proc() {
        println!("{}", *b); // 7
    });
}