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