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