DynPushArrayElementFn

Type Alias DynPushArrayElementFn 

Source
pub type DynPushArrayElementFn = unsafe fn(array: PtrMut, element: PtrMut);
Expand description

Push an element to the array.

The element is moved out of element (not dropped, but the memory can be deallocated).

ยงSafety

array must point to an initialized dynamic value that is an array. element must point to an initialized dynamic value to push.