[][src]Trait mop_structs::prelude::DynDenseStoRef

pub trait DynDenseStoRef: StDenseStoRef {
    fn capacity(&self) -> usize;
}

Dynamic Indexed Storage - Reference

Required methods

fn capacity(&self) -> usize

Loading content...

Implementations on Foreign Types

impl<T> DynDenseStoRef for Vec<T>[src]

Loading content...

Implementors

impl<A> DynDenseStoRef for VecArray<A> where
    A: Array
[src]

fn capacity(&self) -> usize[src]

Examples

use mop_structs::{
    doc_tests::vec_array,
    prelude::*,
};
assert_eq!(vec_array().capacity(), 16);
Loading content...