We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cd5425 commit 5758cccCopy full SHA for 5758ccc
1 file changed
src/lib.rs
@@ -467,9 +467,9 @@ pub enum SslMode {
467
/// The connection will not use SSL.
468
None,
469
/// The connection will use SSL if the backend supports it.
470
- Prefer(Box<NegotiateSsl>),
+ Prefer(Box<NegotiateSsl+std::marker::Sync+Send>),
471
/// The connection must use SSL.
472
- Require(Box<NegotiateSsl>),
+ Require(Box<NegotiateSsl+std::marker::Sync+Send>),
473
}
474
475
#[derive(Clone)]
0 commit comments