pub type Result<T> = Result<T, &'static str>;
Alias for the result type of the election data provider.
enum Result<T> { Ok(T), Err(&'static str), }
Contains the success value
Contains the error value