1 2 3 4 5 6 7 8 9 10 11 12
pub mod array;
pub mod data;
pub mod string;
pub mod object;
pub use array::*;
pub use data::*;
pub use string::*;
pub use object::*;
#[derive(Debug)]
pub struct Ptr<T>(pub *mut T);1 2 3 4 5 6 7 8 9 10 11 12
pub mod array;
pub mod data;
pub mod string;
pub mod object;
pub use array::*;
pub use data::*;
pub use string::*;
pub use object::*;
#[derive(Debug)]
pub struct Ptr<T>(pub *mut T);