[][src]Trait cpp_core::vector_ops::VectorAsSlice

pub trait VectorAsSlice {
    type Item;
    unsafe fn vector_as_slice(&self) -> &[Self::Item];
}

Associated Types

type Item

Loading content...

Required methods

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

Loading content...

Implementors

impl<V, T> VectorAsSlice for V where
    V: Data<Output = Ptr<T>> + Size
[src]

type Item = T

Loading content...