pub type ControllerGetTopologicalPathResult = Result<String, i32>;
enum ControllerGetTopologicalPathResult { Ok(String), Err(i32), }
Contains the success value
Contains the error value