max_size_vec 0.1.0

A Rust crate for stack-based vectors with a fixed amount of memory reserved. It will work on stable when min_const_generics is stabilized.
Documentation
   Compiling max_size_vec v0.1.0 (/home/liam/max_size_vec)
    Finished test [unoptimized + debuginfo] target(s) in 0.44s
     Running target/debug/deps/max_size_vec-88f75e9651187422

running 2 tests
test operational_correctness ... ok
test dropping_order ... ok

test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out

   Doc-tests max_size_vec

running 1 test
test src/lib.rs - (line 11) ... FAILED

failures:

---- src/lib.rs - (line 11) stdout ----
error[E0412]: cannot find type `MaxSizeVec` in this scope
 --> src/lib.rs:13:16
  |
3 |     let mut x: MaxSizeVec<usize, 1024> = MaxSizeVec::new();
  |                ^^^^^^^^^^ not found in this scope
  |
help: consider importing this struct
  |
2 | use max_size_vec::MaxSizeVec;
  |

error[E0433]: failed to resolve: use of undeclared type or module `MaxSizeVec`
 --> src/lib.rs:13:42
  |
3 |     let mut x: MaxSizeVec<usize, 1024> = MaxSizeVec::new();
  |                                          ^^^^^^^^^^ not found in this scope
  |
help: consider importing this struct
  |
2 | use max_size_vec::MaxSizeVec;
  |

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0412, E0433.
For more information about an error, try `rustc --explain E0412`.
Couldn't compile the test.

failures:
    src/lib.rs - (line 11)

test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out

error: test failed, to rerun pass '--doc'