[][src]Struct seshat::collections::TwoStageTable

pub struct TwoStageTable<'a, T, IndexT> { /* fields omitted */ }

Implementations

impl<'a, T: Copy, IndexT: Num + AsPrimitive<usize>> TwoStageTable<'a, T, IndexT>[src]

pub fn new(
    stage_1: &'a [IndexT],
    stage_2: &'a [&'a [T]],
    block_size: usize
) -> TwoStageTable<'a, T, IndexT>
[src]

pub fn at(&self, cp: u32) -> T[src]

Auto Trait Implementations

impl<'a, T, IndexT> RefUnwindSafe for TwoStageTable<'a, T, IndexT> where
    IndexT: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, IndexT> Send for TwoStageTable<'a, T, IndexT> where
    IndexT: Sync,
    T: Sync

impl<'a, T, IndexT> Sync for TwoStageTable<'a, T, IndexT> where
    IndexT: Sync,
    T: Sync

impl<'a, T, IndexT> Unpin for TwoStageTable<'a, T, IndexT>

impl<'a, T, IndexT> UnwindSafe for TwoStageTable<'a, T, IndexT> where
    IndexT: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.