[][src]Module fixed_slice_vec::vec

FixedSliceVec is a structure for defining variably populated vectors backed by a slice of storage capacity.

Structs

FixedSliceVec

Vec-like structure backed by a storage slice of possibly uninitialized data.

IndexError

Error that occurs when a call that attempts to access the FixedSliceVec in a manner that does not respect the current length of the vector, i.e. its current number of initialized items.

StorageError

Error that occurs when a call that attempts to increase the number of items in the FixedSliceVec fails due to insufficient storage capacity.