[][src]Trait cl_traits::Storage

pub trait Storage {
    type Item;
}

Storage is anything that can hold a collection of items

Associated Types

type Item

Storage item

Loading content...

Implementors

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

type Item = T

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

type Item = T

impl<A> Storage for ArrayWrapper<A> where
    A: Array
[src]

type Item = A::Item

Loading content...