heaparray 0.2.0

Heap-allocated array with optional metadata field
Documentation
mod fat_array_ptr;
pub mod monitor;
mod thin_array_ptr;

#[derive(Eq, PartialEq)]
pub struct Test {
    pub a: usize,
    pub b: u8,
    pub c: u8,
}

impl Default for Test {
    fn default() -> Test {
        Self { a: 100, b: 2, c: 2 }
    }
}

pub(self) mod prelude {
    pub(crate) use super::Test;
    pub use crate::prelude::*;
    pub(crate) use core::mem;
}