network: clarify comment on Default for handshake::Builder
Co-authored-by: Jane Lusby <jlusby42@gmail.com>
This commit is contained in:
parent
fddba7a336
commit
f91b91b6d8
|
@ -140,7 +140,9 @@ where
|
||||||
{
|
{
|
||||||
/// Create a builder that configures a [`Handshake`] service.
|
/// Create a builder that configures a [`Handshake`] service.
|
||||||
pub fn builder() -> Builder<S> {
|
pub fn builder() -> Builder<S> {
|
||||||
// can't derive Builder::default without a bound on S :(
|
// We don't derive `Default` because the derive inserts a `where S:
|
||||||
|
// Default` bound even though `Option<S>` implements `Default` even if
|
||||||
|
// `S` does not.
|
||||||
Builder {
|
Builder {
|
||||||
config: None,
|
config: None,
|
||||||
inbound_service: None,
|
inbound_service: None,
|
||||||
|
|
Loading…
Reference in New Issue