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