commit | 56dec3ea4750c697d3cd786d8a65f985c92a3bfb | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:45:53 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:45:53 2023 +0000 |
tree | b20f2866c1a76f13beb74f38d89e4f93290a0da8 | |
parent | b4f6963fd06324bb4502ce30e59ea6d50cab0511 [diff] | |
parent | a670ec81179294d145ffa702143a8ac479871f45 [diff] |
Snap for 10453563 from a670ec81179294d145ffa702143a8ac479871f45 to mainline-adservices-release Change-Id: I035874b754277c14958e1d5161ef0c94f1d1f0ec
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