summaryrefslogtreecommitdiffstats
path: root/third_party/rust/copyless/src/lib.rs
blob: e06bec0f83b23565972f7423d5d92a2f7cdb906c (plain)
1
2
3
4
5
6
7
8
9
10
11
#![warn(missing_docs)]

//! Helper extensions of standard containers that allow memcopy-less operation.

pub use self::{
    boxed::{BoxAllocation, BoxHelper},
    vec::{VecAllocation, VecEntry, VecHelper},
};

mod boxed;
mod vec;