[][src]Trait heaparray::BaseArrayRef

pub trait BaseArrayRef {
    fn is_null(&self) -> bool;
}

A basic reference to a heap-allocated array. Should be paired with exactly one of either heaparray::UnsafeArrayRef or heaparray::ArrayRef.

Required methods

fn is_null(&self) -> bool

Returns whether the array pointer that this contains is null.

Loading content...

Implementors

impl<'a, A, R, E, L> BaseArrayRef for heaparray::naive_rc::generic::RcArray<'a, A, R, E, L> where
    A: 'a + LabelledArray<'a, E, R> + BaseArrayRef + UnsafeArrayRef,
    R: 'a + RefCounter<L>,
    L: 'a,
    E: 'a, 
[src]

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

impl<'a, E, L> BaseArrayRef for FpArcArray<'a, E, L>[src]

impl<'a, E, L> BaseArrayRef for FpRcArray<'a, E, L>[src]

impl<'a, E, L> BaseArrayRef for TpArcArray<'a, E, L>[src]

impl<'a, E, L> BaseArrayRef for TpRcArray<'a, E, L>[src]

impl<'a, E, L> BaseArrayRef for ArcArray<'a, E, L>[src]

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

impl<'a, E, L> BaseArrayRef for heaparray::RcArray<'a, E, L>[src]

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

Loading content...