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.
Trait Implementations
Creates a new TypedArena
.
Auto Trait Implementations
impl<T> !RefUnwindSafe for TypedArena<T>
impl<T> !Sync for TypedArena<T>
impl<T> Unpin for TypedArena<T> where
T: Unpin,
impl<T> UnwindSafe for TypedArena<T> where
T: UnwindSafe + RefUnwindSafe,
Blanket Implementations
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