Struct rinecs::storage::oneton_densevec::_DenseOneToNVec [−][src]
pub struct _DenseOneToNVec<T, G> { /* fields omitted */ }
Trait Implementations
impl<'a, T: 'a, G: GroupExt + 'a> OneToNStorage<'a, T> for _DenseOneToNVec<T, G>
[src]
impl<'a, T: 'a, G: GroupExt + 'a> OneToNStorage<'a, T> for _DenseOneToNVec<T, G>
[src]fn insert_slice<I: IntoIterator<Item = T>>(&mut self, guid: usize, t: I)
[src]
unsafe fn get_slice(&self, guid: usize) -> SliceView<'_, T>
[src]
unsafe fn get_slice_mut(&mut self, guid: usize) -> SliceViewMut<'_, T>
[src]
impl<'a, T: 'a, G: GroupExt + 'a> Storage<'a, T> for _DenseOneToNVec<T, G>
[src]
impl<'a, T: 'a, G: GroupExt + 'a> Storage<'a, T> for _DenseOneToNVec<T, G>
[src]type Get = SliceView<'a, T>
type GetMut = SliceViewMut<'a, T>
type DerefTarget = [T]
type IdedIter = IdedIter<'a, T, G>
type Iter = Iter<'a, T, G>
type IterMut = IterMut<'a, T, G>
fn new() -> _DenseOneToNVec<T, G>
[src]
fn with_capacity(capacity: usize) -> _DenseOneToNVec<T, G>
[src]
fn insert(&mut self, guid: usize, t: T)
[src]
fn remove(&mut self, guid: usize)
[src]
unsafe fn get(&self, guid: usize) -> SliceView<'a, T>
[src]
unsafe fn get_mut(&mut self, guid: usize) -> SliceViewMut<'a, T>
[src]
unsafe fn fast_get(&self, guid: usize) -> SliceView<'a, T>
[src]
unsafe fn fast_get_mut(&mut self, guid: usize) -> SliceViewMut<'a, T>
[src]
fn fast_index(&self, guid: usize) -> usize
[src]
fn guid_from_fast_index(&self, idx: usize) -> usize
[src]
fn contains(&self, guid: usize) -> bool
[src]
fn iter(&self) -> Self::Iter
[src]
fn iter_mut(&mut self) -> Self::IterMut
[src]
fn ided_iter(&self) -> Self::IdedIter
[src]
fn update(&mut self)
[src]
fn tracks_changes() -> bool
[src]
fn storage_changed(&self) -> bool
[src]
Auto Trait Implementations
impl<T, G> RefUnwindSafe for _DenseOneToNVec<T, G> where
G: RefUnwindSafe,
T: RefUnwindSafe,
G: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, G> Send for _DenseOneToNVec<T, G> where
G: Send,
T: Send,
G: Send,
T: Send,
impl<T, G> Sync for _DenseOneToNVec<T, G> where
G: Sync,
T: Sync,
G: Sync,
T: Sync,
impl<T, G> Unpin for _DenseOneToNVec<T, G> where
G: Unpin,
T: Unpin,
G: Unpin,
T: Unpin,
impl<T, G> UnwindSafe for _DenseOneToNVec<T, G> where
G: UnwindSafe,
T: UnwindSafe,
G: UnwindSafe,
T: UnwindSafe,