commit | eae301df06074d2329ff6e316e1ba7f6da4ccf73 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Wed Aug 11 16:24:34 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Aug 11 16:24:34 2021 +0000 |
tree | 7c9207d77f9ab146b60fdb9130e559073803c92f | |
parent | a063e9f1d10355ed769eea67700a531e5a86da26 [diff] | |
parent | 03f8b7dbde84af43d006930273621d548caf53fb [diff] |
Upgrade rust/crates/tinyvec to 1.3.1 am: 874ba7dc38 am: 3fdafaeec7 am: f5e72013b6 am: 03f8b7dbde Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/tinyvec/+/1791040 Change-Id: I49f23494663d59f493eeee4afb617df44a6fb2c8
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