Trait deferred_reference::SliceLike[][src]

pub trait SliceLike: PointerLength {
    type Element;
}

This trait is implemented for all slice-like structures. Currently there are only 2 of these types: arrays [T; N] and slices [T].

Associated Types

type Element[src]

The type of the elements held by the slice-like structure.

Loading content...

Implementors

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

type Element = T

impl<T, const N: usize> SliceLike for [T; N][src]

type Element = T

Loading content...