Module pleco::tools::pleco_arc[][src]

A faster version of std::sync::Arc.

This is mostly copied from servo_arc, so see that documentation for more information.

Structs

Arc

Reference counting pointer, sharable between threads.

ArcInner

The Inner structure of an Arc.

UniqueArc

An Arc that ensures a single reference to it. Allows for modification to the state inside, and also transformation into an Arc.