commit | 14ed2a5135a73721b9df5fbfbfc77bb865dcb9e2 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <mmaurer@google.com> | Tue Jun 14 17:18:18 2022 -0700 |
committer | Matthew Maurer <mmaurer@google.com> | Tue Jun 14 17:18:18 2022 -0700 |
tree | e8c805f584b07b27ac90473666626006bbd63932 | |
parent | 3f37e30c46575d2464e625dbfc1c725a5fb5f19b [diff] |
Update TEST_MAPPING Test: None Bug: 236006683 Change-Id: I2aa9082a5f5a7f2cee730baf8ccfdf0c07a2da80
A 100% safe crate of vec-like types. #![forbid(unsafe_code)]
Main types are as follows:
ArrayVec
is an array-backed vec-like data structure. It panics on overflow.SliceVec
is the same deal, but using a &mut [T]
.TinyVec
(alloc
feature) is an enum that's either an Inline(ArrayVec)
or a Heap(Vec)
. If a TinyVec
is Inline
and would overflow it automatically transitions to Heap
and continues whatever it was doing.To attain this “100% safe code” status there is one compromise: the element type of the vecs must implement Default
.
For more details, please see the docs.rs documentation