pub type ResultPod<T> = Result<Pod<T>, SmallError>;
pub enum ResultPod<T> { Ok(Arc<RwLock<T>>), Err(SmallError), }
Contains the success value
Contains the error value