[][src]Module gdnative::core_types::typed_array

Structs

ReadGuard

RAII read guard.

TypedArray

A reference-counted CoW typed vector using Godot's pool allocator, generic over possible element types.

WriteGuard

RAII write guard.

Traits

Element

Trait for element types that can be contained in TypedArray. This trait is sealed and has no public interface.

Type Definitions

Read

A RAII read access for Godot typed arrays.

Write

A RAII write access for Godot typed arrays. This will only lock the CoW container once, as opposed to every time with methods like push.