We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6506a4 commit 0223e7fCopy full SHA for 0223e7f
git-transport/src/client/connect.rs
@@ -36,7 +36,7 @@ mod box_impl {
36
};
37
use std::ops::{Deref, DerefMut};
38
39
- impl client::Transport for Box<dyn client::Transport> {
+ impl<T: client::Transport + ?Sized> client::Transport for Box<T> {
40
fn handshake(&mut self, service: Service) -> Result<SetServiceResponse, Error> {
41
self.deref_mut().handshake(service)
42
}
tasks.md
@@ -6,8 +6,11 @@
6
* [ ] A V1/V2 version of a delegate to list remotes of a given remote, attempting to use as many features as possible
7
* [ ] journey tests for each connection method
8
* [ ] file
9
- * [ ] git
+ * [ ] file JT
10
+ * [x] git
11
+ * [ ] git JT
12
* [ ] ssh
13
+ * [ ] ssh JT
14
* [ ] https (unauthenticated)
15
* [ ] https (authenticated)
16
* **git-protocol**
0 commit comments