/// User information /// /// @author Pierre Hubert #[derive(Debug)] pub struct User { pub id: i64, pub email: String, pub password: String, pub first_name: String, pub last_name: String, }