We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d58da2 commit 02c80a5Copy full SHA for 02c80a5
src/builder.rs
@@ -98,7 +98,7 @@ pub struct ConfigBuilder<St: BuilderState> {
98
pub trait BuilderState {}
99
100
/// Represents data specific to builder in default, sychronous state, without support for async.
101
-#[derive(Debug, Default)]
+#[derive(Debug, Default, Clone)]
102
pub struct DefaultState {
103
sources: Vec<Box<dyn Source + Send + Sync>>,
104
}
@@ -124,7 +124,7 @@ pub struct DefaultState {
124
pub struct AsyncConfigBuilder {}
125
126
/// Represents data specific to builder in asychronous state, with support for async.
127
128
pub struct AsyncState {
129
sources: Vec<SourceType>,
130
0 commit comments