Struct scoped_gc::Gc [] [src]

pub struct Gc<'gc, T: Trace + 'gc> { /* fields omitted */ }

A smart pointer to a value managed by a garbage-collector

This pointer can be created either by allocating a new garbage-collected value using the GcScope::alloc method or by cloning an existing Gc pointer with Gc::clone. This pointer can only be used during the lifetime of the corresponding garbage-collected scope (represented by the lifetime 'gc).

By default, a Gc pointer acts as a root for its value: as long as the Gc is on the stack its value is kept alive. A Gc is unrooted only when it is moved (transitively) inside another Gc.

Trait Implementations

impl<'gc, T: Debug + Trace + 'gc> Debug for Gc<'gc, T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'gc, T: Trace> Trace for Gc<'gc, T>
[src]

[src]

Marks the value in the GcBox as reachable.

The mark signal will be propagated further in the object graph unless the box was already marked (to avoid infinite loops on cycles, or redundant traversals).

[src]

Tags this Gc pointer as a root for its value.

[src]

Untags this Gc pointer as a root for its value.

impl<'gc, T: Trace> Deref for Gc<'gc, T>
[src]

The Deref implementation allows to use the value's methods directly on the Gc pointer.

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<'gc, T: Trace> Drop for Gc<'gc, T>
[src]

[src]

Executes the destructor for this type. Read more

impl<'gc, T: Trace + 'gc> Clone for Gc<'gc, T>
[src]

Creates a new Gc pointer for the same value.

It is recommended to use it as Gc::clone(&gc) instead of gc.clone() to avoid confusion with the clone method of the inner value.

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'gc, T> !Send for Gc<'gc, T>

impl<'gc, T> !Sync for Gc<'gc, T>