pub type PolarResult<T> = Result<T, PolarError>;
pub enum PolarResult<T> { Ok(T), Err(PolarError), }
Contains the success value
Contains the error value