[][src]Struct heaparray::RcArray

#[repr(C)]
pub struct RcArray<'a, E, L = ()>(_);

Reference counted array.

Trait Implementations

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

impl<'a, E, L> ArrayRef for RcArray<'a, E, L>[src]

fn clone(ptr: &Self) -> Self[src]

Clones the array reference. Internally just calls its .clone() method. Read more

impl<'a, E, L> LabelledArray<'a, E, L> for RcArray<'a, E, L>[src]

impl<'a, E, L> DefaultLabelledArray<'a, E, L> for RcArray<'a, E, L> where
    E: Default
[src]

impl<'a, E> MakeArray<'a, E> for RcArray<'a, E, ()> where
    E: 'a, 
[src]

impl<'a, E, L> Sync for RcArray<'a, E, L> where
    GenRcArray<'a, FpArr<'a, E, RcStruct<L>>, RcStruct<L>, E, L>: Sync
[src]

impl<'a, E, L> Send for RcArray<'a, E, L> where
    GenRcArray<'a, FpArr<'a, E, RcStruct<L>>, RcStruct<L>, E, L>: Send
[src]

impl<'a, E, L> Clone for RcArray<'a, E, L>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, E, L> Index<usize> for RcArray<'a, E, L>[src]

type Output = E

The returned type after indexing.

impl<'a, E, L> IndexMut<usize> for RcArray<'a, E, L>[src]

impl<'a, E, L> Container<(usize, E)> for RcArray<'a, E, L>[src]

impl<'a, E, L> CopyMap<'a, usize, E, (usize, E), &'a E, &'a mut E> for RcArray<'a, E, L>[src]

impl<'a, E, L> Array<'a, E, &'a E, &'a mut E> for RcArray<'a, E, L>[src]

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]