pub type AzaleaResult<T> = Result<T, MissingComponentError>;Expand description
An error that occurs when we tried to access data from an entity that it doesn’t have.
See MissingComponentError for more details.
Aliased Type§
pub enum AzaleaResult<T> {
Ok(T),
Err(MissingComponentError),
}