Update native support.

This commit is contained in:
Gav
2018-01-09 15:07:55 +01:00
parent 88d66681f6
commit 2489b3a9aa
@@ -1,4 +1,8 @@
pub use std::vec::Vec;
pub use std::rc::Rc;
pub use std::cell::RefCell;
pub use std::boxed::Box;
pub use std::mem::{size_of, transmute};
pub fn storage(_key: &[u8]) -> Vec<u8> { vec![] }
pub fn storage_into<T: Sized>(_key: &[u8]) -> Option<T> { None }