Crate mjb_gc[][src]

Expand description

Thread-local reference-counted pointers with immediate cycle collection.

The Gc<T> type provides shared ownership of a value. It is not Send, since the cycle collection occurs on a single thread.

Macros

Implement an empty trace on a type.

Structs

A pointer type over a value that provides shared ownership and immediate cycle collection upon Drop.

Traits

A trait for tracing through Gced values.