We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b99c5e2 commit 1753fbaCopy full SHA for 1753fba
src/conn/opts.rs
@@ -349,13 +349,13 @@ impl OptsBuilder {
349
350
/// Not implemented on windows
351
#[cfg(all(feature = "ssl", target_os = "windows"))]
352
- pub fn ssl_opts<A, B, C>(&mut self, ssl_opts: Option<SslOpts>) -> &mut Self {
+ pub fn ssl_opts<A, B, C>(&mut self, _: Option<SslOpts>) -> &mut Self {
353
panic!("OptsBuilder::ssl_opts is not implemented on Windows");
354
}
355
356
/// Requires `ssl` feature
357
#[cfg(not(feature = "ssl"))]
358
359
panic!("OptsBuilder::ssl_opts requires `ssl` feature");
360
361
0 commit comments