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