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