Trait AnyIndexedVec

Source
pub trait AnyIndexedVec: AnyVec {
    // Required methods
    fn height(&self) -> Result<Height>;
    fn flush(&mut self, height: Height) -> Result<()>;
}

Required Methods§

Source

fn height(&self) -> Result<Height>

Source

fn flush(&mut self, height: Height) -> Result<()>

Implementors§

Source§

impl<I, T> AnyIndexedVec for IndexedVec<I, T>
where I: StoredIndex, T: StoredType,