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