pub async fn with_retry<T, F, Fut>(
config: &RetryConfig,
operation: F,
) -> Result<T>Expand description
Runs an asynchronous Supabase operation using the configured retry policy.
ยงErrors
Returns the final operation error when it is not retryable or the maximum number of attempts is reached.