1 2 3 4 5 6 7 8
//! Types in use in api //! Just type aliases pub type Int32 = i32; pub type DateTime = String; pub type Int64 = i64; pub type Double = f64; pub type Float = f32;