diff options
Diffstat (limited to 'third_party/rust/copyless/src/lib.rs')
-rw-r--r-- | third_party/rust/copyless/src/lib.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/rust/copyless/src/lib.rs b/third_party/rust/copyless/src/lib.rs new file mode 100644 index 0000000000..e06bec0f83 --- /dev/null +++ b/third_party/rust/copyless/src/lib.rs @@ -0,0 +1,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; |