1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! # Pinvec
//! 
//! A growable vector-like structure which never moves its contents,
//! and guarantees this contract through the pin api.

extern crate pow_of_2;

/// Pinned non-growing buffer.
pub mod buf;

/// Pinned growable buffer.
pub mod vec;

pub use self::{
    buf::PinBuffer,
    vec::PinVec,
};