[src]

Struct boehm::Gc

pub struct Gc<T> {
    // some fields omitted
}

A garbage collected pointer.

Fields

Methods

impl<T: 'static> Gc<T>

fn new(value: T) -> Gc<T>

fn borrow<'r>(&'r self) -> &'r T

Trait Implementations

impl<T: Clone> Clone for Gc<T>

Automatically derived.

fn clone(&self) -> Gc<T>