1 2 3 4 5 6 7
//! Error related structs and implementations #[derive(Debug, Serialize, Deserialize)] pub struct Error { pub code: i32, pub message: String, }
1 2 3 4 5 6 7
//! Error related structs and implementations #[derive(Debug, Serialize, Deserialize)] pub struct Error { pub code: i32, pub message: String, }