fixed-slice-vec

FixedSliceVec is a dynamic length Vec with runtime-determined maximum capacity backed by a slice.

Overview

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.

Getting Started

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"

Usage

FixedSliceVec

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; 1024] = unsafe { MaybeUninit::uninit().assumeinit() }; let byteslice = &mut bytes[..512]; let mut vec: FixedSliceVec = FixedSliceVec::fromuninitbytes(byte_slice);

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()); ```

single module

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.

Comparison

Several other Vec-like crates exist and should be considered as possible alternatives to FixedSliceVec.

License

Copyright 2020 Auxon Corporation, released under the Apache 2.0 license.