-
Notifications
You must be signed in to change notification settings - Fork 69
WIP connection manager #246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 14 commits
78d3406
5707979
b348f59
2c39a0c
87182bb
b1db177
ef6e809
201f0bf
30f7807
766c5c8
b3eddda
b646bbb
bac057f
c4831ff
7ab389b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| pub(crate) enum Either<L, R> { | ||
| #[derive(Debug)] | ||
| pub enum Either<L, R> { | ||
| Left(L), | ||
| Right(R), | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| //! This module provides socket managers. | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would like to see a short description of what a socket manager is
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would you agree that I split SocketManager into two parts, as I wrote in the comment? |
||
| mod simple; | ||
|
|
||
| pub use self::simple::SimpleSocketManager; | ||
Uh oh!
There was an error while loading. Please reload this page.