pub trait Storage { // Required method fn ptr_len(&self) -> (NonNull<u8>, usize); }
Trait for providing access to the storage
Must always return the same ptr/len forever.
alloc