pub type AtomResult<T> = Result<T, AtomError>;
A specialized result type for manifest operations.
pub enum AtomResult<T> { Ok(T), Err(AtomError), }
Contains the success value
Contains the error value