Skip to content

Commit

Permalink
Fix IntoOptionsMaybe usage in builder.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
gngeorgiev committed Nov 22, 2021
1 parent 7e4b966 commit 105bf0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ where
}
}

pub fn with_options<O: Into<Option<Options>>>(mut self, opts: O) -> Self {
pub fn with_options(mut self, opts: impl IntoOptionsMaybe) -> Self {
self.opts = opts.into();
self
}
Expand Down

0 comments on commit 105bf0f

Please sign in to comment.