[][src]Trait cpp_core::SliceAsBeginEnd

pub trait SliceAsBeginEnd {
    type Item;
    fn begin_ptr(&self) -> Ptr<Self::Item>;
fn end_ptr(&self) -> Ptr<Self::Item>; }

Associated Types

type Item

Loading content...

Required methods

fn begin_ptr(&self) -> Ptr<Self::Item>

fn end_ptr(&self) -> Ptr<Self::Item>

Loading content...

Implementations on Foreign Types

impl<'a, T> SliceAsBeginEnd for &'a [T][src]

type Item = T

impl<'a> SliceAsBeginEnd for &'a str[src]

type Item = c_char

Loading content...

Implementors

Loading content...