-
I get this error when running the following code: use backon::{ExponentialBuilder, Retryable};
async fn get_thing(a: String) -> Result<String, String> {
Ok(a.clone())
}
fn demo() {
let retry_strat = ExponentialBuilder::default();
let magic = get_thing(String::new()).retry(&retry_strat);
} Error:
|
Beta Was this translation helpful? Give feedback.
Answered by
esemeniuc
Oct 20, 2023
Replies: 1 comment
-
Didn't see #50 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Xuanwo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Didn't see #50