[][src]Struct rs_graph::vec::ItemSlice

pub struct ItemSlice<T, Idx>(_, _);

Trait Implementations

impl<'a, T, Idx> From<&'a [T]> for &'a ItemSlice<T, Idx>[src]

impl<'a, T, Idx> From<&'a mut [T]> for &'a mut ItemSlice<T, Idx>[src]

impl<T, Idx> DerefMut for ItemSlice<T, Idx>[src]

impl<T, Idx> Deref for ItemSlice<T, Idx>[src]

type Target = [T]

The resulting type after dereferencing.

impl<'a, T, I, Idx> Index<I> for &'a ItemSlice<T, Idx> where
    Idx: NumberedIndexer<I>, 
[src]

type Output = T

The returned type after indexing.

impl<'a, T, I, Idx> Index<I> for &'a mut ItemSlice<T, Idx> where
    Idx: NumberedIndexer<I>, 
[src]

type Output = T

The returned type after indexing.

impl<'a, T, I, Idx> IndexMut<I> for &'a mut ItemSlice<T, Idx> where
    Idx: NumberedIndexer<I>, 
[src]

Auto Trait Implementations

impl<T, Idx> Send for ItemSlice<T, Idx> where
    Idx: Send,
    T: Send

impl<T, Idx> Sync for ItemSlice<T, Idx> where
    Idx: Sync,
    T: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.