You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
error[E0277]: the trait bound `T: tls_api::TlsConnector` is not satisfied
--> grpc/src/client/mod.rs:50:13
|
50 | Explict(ClientTlsOption<T>),
| ^^^^^^^^^^^^^^^^^^ the trait `tls_api::TlsConnector` is not implemented for `T`
|
= help: consider adding a `where T: tls_api::TlsConnector` bound
= note: required by `httpbis::ClientTlsOption`
error[E0277]: the trait bound `A: tls_api::TlsAcceptor` is not satisfied
--> grpc/src/server/mod.rs:77:5
|
77 | pub http: httpbis::ServerBuilder<A>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `tls_api::TlsAcceptor` is not implemented for `A`
|
= help: consider adding a `where A: tls_api::TlsAcceptor` bound
= note: required by `httpbis::ServerBuilder`
error[E0277]: the trait bound `TLS: tls_api::TlsConnector` is not satisfied
--> grpc/src/client/mod.rs:144:5
|
144 | / pub fn explicit_tls<TLS: tls_api::TlsConnector>(
145 | | self,
146 | | tls: ClientTlsOption<TLS>,
147 | | ) -> ClientBuilder<'a, TLS> {
... |
154 | | }
155 | | }
| |_____^ the trait `tls_api::TlsConnector` is not implemented for `TLS`
|
= help: consider adding a `where TLS: tls_api::TlsConnector` bound
= note: required by `httpbis::ClientTlsOption`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0277`.
error: Could not compile `grpc`.
The text was updated successfully, but these errors were encountered:
build failed in both examples.
The text was updated successfully, but these errors were encountered: