We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a2b7276 + 09b5858 commit bab6e30Copy full SHA for bab6e30
src/builder.rs
@@ -97,7 +97,7 @@ pub struct ConfigBuilder<St: BuilderState> {
97
pub trait BuilderState {}
98
99
/// Represents data specific to builder in default, sychronous state, without support for async.
100
-#[derive(Debug, Default)]
+#[derive(Debug, Default, Clone)]
101
pub struct DefaultState {
102
sources: Vec<Box<dyn Source + Send + Sync>>,
103
}
@@ -123,7 +123,7 @@ pub struct DefaultState {
123
pub struct AsyncConfigBuilder {}
124
125
/// Represents data specific to builder in asychronous state, with support for async.
126
127
pub struct AsyncState {
128
sources: Vec<SourceType>,
129
0 commit comments