We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f151310 commit db3da58Copy full SHA for db3da58
src/connection_properties.rs
@@ -62,7 +62,10 @@ impl ConnectionProperties {
62
}
63
64
#[must_use]
65
- pub fn configure_backoff(mut self, conf: impl Fn(ExponentialBuilder) -> ExponentialBuilder) -> Self {
+ pub fn configure_backoff(
66
+ mut self,
67
+ conf: impl Fn(ExponentialBuilder) -> ExponentialBuilder,
68
+ ) -> Self {
69
self.backoff = conf(self.backoff);
70
self.backoff_configured = true;
71
self
0 commit comments