FixedSliceVec
is a dynamic length Vec with runtime-determined maximum capacity backed by a slice.
This library is focused on meeting the following, narrow use case:
* no_std
: Rust programming without the std library.
* No global allocator: No access to the alloc
crate
* Runtime capacity : Maximum possible items in a collection or maximum
possible backing bytes of storage is unknown until runtime.
fixed-slice-vec
is a Rust library, built and tested via Cargo. It
has no dependencies outside of the Rust core library.
To add fixed-slice-vec
to your Rust project, add a dependency to it
in your Cargo.toml file.
toml
fixed-slice-vec = "0.7"
In your Rust project source code, you can create a FixedSliceVec a number of ways (see the project Rust API docs for details). The most common form of construction is from a slice of uninitialized bytes.
```rust
use fixedslicevec::FixedSliceVec;
use core::mem::MaybeUninit;
// Safe to construct arrays of uninitialized values.
let mut bytes: [MaybeUninit
assert_eq!(0, vec.len()); assert!(vec.capacity() >= 63, "The exact capacity will depend on source-slice alignment");
vec.trypush(2.7f64).expect("Ran out of capacity unexpectedly"); asserteq!(1, vec.len());
vec.clear(); assert!(vec.is_empty()); ```
As a companion to FixedSliceVec
, the single
submodule provides
functions for working with individual Rust values backed by arbitrary
byte slices. See the API Docs for details and examples.
Several other Vec
-like crates exist and should be considered
as possible alternatives to FixedSliceVec
.
FixedSliceVec
. We
only discovered it existed after developing FixedSliceVec
, so there's some
evidence of convergent design or needs. It appears largely
unmaintained over the last few years, does not make use of the
MaybeUninit
pattern for handling uninitialized data in Rust, and does not drop items
correctly in some cases. It does not support creating an instance from raw bytes
and requires Default
elements for some operations.Copyright 2020 Auxon Corporation, released under the Apache 2.0 license.