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