Struct rustc_arena::TypedArena[][src]

pub struct TypedArena<T> {
    ptr: Cell<*mut T>,
    end: Cell<*mut T>,
    chunks: RefCell<Vec<TypedArenaChunk<T>>>,
    _own: PhantomData<T>,
}
Expand description

An arena that can hold objects of only one type.

Fields

ptr: Cell<*mut T>

A pointer to the next object to be allocated.

end: Cell<*mut T>

A pointer to the end of the allocated area. When this pointer is reached, a new chunk is allocated.

chunks: RefCell<Vec<TypedArenaChunk<T>>>

A vector of arena chunks.

_own: PhantomData<T>

Marker indicating that dropping the arena causes its owned instances of T to be dropped.

Implementations

Allocates an object in the TypedArena, returning a reference to it.

Ensures there’s enough space in the current chunk to fit len objects.

Grows the arena.

Trait Implementations

Creates a new TypedArena.

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 48 bytes