[][src]Trait cpp_core::vector_ops::VectorAsMutSlice

pub trait VectorAsMutSlice {
    type Item;
    unsafe fn vector_as_mut_slice(&mut self) -> &mut [Self::Item];
}

Associated Types

type Item

Loading content...

Required methods

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

Loading content...

Implementors

impl<V, T> VectorAsMutSlice for V where
    V: DataMut<Output = MutPtr<T>> + Size
[src]

type Item = T

Loading content...