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.3"
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 bare bytes.
```rust
use fixedslicevec::FixedSliceVec;
let mut bytes = [0u8; 1024];
let byteslice = &mut bytes[..512];
let mut vec: FixedSliceVec
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, and does not make use of the
MaybeUninit
pattern for handling uninitialized data in Rust. Presently it supports a few
more of the convenience methods available in standard Vec
than
FixedSliceVec
. It does not support creating an instance from raw bytes.Copyright 2020 Auxon Corporation, released under the Apache 2.0 license.