1 2 3 4 5 6 7 8
extern crate alloc; use alloc::vec::Vec; pub type CallStack = Vec<FnCall>; pub struct FnCall { pub ret: u8 }