Derive Clone for Builder types
This commit is contained in:
		| @@ -36,7 +36,7 @@ pub struct Body<B: IntoBuf> { | ||||
| } | ||||
|  | ||||
| /// Build a Client. | ||||
| #[derive(Debug, Default)] | ||||
| #[derive(Clone, Debug, Default)] | ||||
| pub struct Builder { | ||||
|     settings: Settings, | ||||
| } | ||||
|   | ||||
| @@ -21,7 +21,7 @@ pub struct Server<T, B: IntoBuf> { | ||||
| } | ||||
|  | ||||
| /// Build a Server | ||||
| #[derive(Debug, Default)] | ||||
| #[derive(Clone, Debug, Default)] | ||||
| pub struct Builder { | ||||
|     settings: Settings, | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user