[][src]Trait heaparray::fat_array_ptr::UnsafeArrayRef

pub trait UnsafeArrayRef: BaseArrayRef {
    unsafe fn null_ref() -> Self;
}

A reference to a heap-allocated array whose safe API guarrantees it to always be non-null.

Required methods

unsafe fn null_ref() -> Self

Creates a null array. All kinds of UB associated with this, use with caution.

Loading content...

Implementors

impl<'a, E, L> UnsafeArrayRef for FatPtrArray<'a, E, L>[src]

impl<'a, E, L> UnsafeArrayRef for HeapArray<'a, E, L>[src]

impl<'a, E, L> UnsafeArrayRef for ThinPtrArray<'a, E, L>[src]

Loading content...