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