Skip to content

Commit db3da58

Browse files
committed
rustfmt
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
1 parent f151310 commit db3da58

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/connection_properties.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ impl ConnectionProperties {
6262
}
6363

6464
#[must_use]
65-
pub fn configure_backoff(mut self, conf: impl Fn(ExponentialBuilder) -> ExponentialBuilder) -> Self {
65+
pub fn configure_backoff(
66+
mut self,
67+
conf: impl Fn(ExponentialBuilder) -> ExponentialBuilder,
68+
) -> Self {
6669
self.backoff = conf(self.backoff);
6770
self.backoff_configured = true;
6871
self

0 commit comments

Comments
 (0)