commit | 8ddbef53040fad6c8b6ea114b900e9b86619e525 | [log] [tgz] |
---|---|---|
author | James Farrell <jamesfarrell@google.com> | Tue Sep 24 19:32:44 2024 +0000 |
committer | James Farrell <jamesfarrell@google.com> | Tue Sep 24 19:32:44 2024 +0000 |
tree | af465eb001c120d32209a969c30f9d74b07889b0 | |
parent | 1f4ebb598b202c5dcbfd8286b01656fd75e86297 [diff] |
Update Android.bp by running cargo_embargo Test: ran cargo_embargo Change-Id: Id96f99380648113a3f47a933829c6874f4a244e1
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