[][src]Trait indexing::container_traits::Contiguous

pub unsafe trait Contiguous: Trustworthy {
    fn begin(&self) -> *const Self::Item;
fn end(&self) -> *const Self::Item;
fn as_slice(&self) -> &[Self::Item]; }

The container has a contiguous addressable range.

Required methods

fn begin(&self) -> *const Self::Item

fn end(&self) -> *const Self::Item

fn as_slice(&self) -> &[Self::Item]

Loading content...

Implementations on Foreign Types

impl<'a, C: ?Sized> Contiguous for &'a C where
    C: Contiguous
[src]

impl<'a, C: ?Sized> Contiguous for &'a mut C where
    C: Contiguous
[src]

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

impl<T> Contiguous for Vec<T>[src]

Loading content...

Implementors

Loading content...