Skip to content
Snippets Groups Projects
Commit 91a8bc0c authored by Ian Jackson's avatar Ian Jackson
Browse files

impl From<SubfieldBuildError> for ConfigBuildError

We are going to be using sub-field builders.
parent 6da7a2e3
No related branches found
No related tags found
1 merge request!462Replace much handwritten config code with use of derive_builder
......@@ -45,6 +45,13 @@ impl From<derive_builder::UninitializedFieldError> for ConfigBuildError {
}
}
impl From<derive_builder::SubfieldBuildError<ConfigBuildError>> for ConfigBuildError {
fn from(e: derive_builder::SubfieldBuildError<ConfigBuildError>) -> Self {
let (field, problem) = e.into_parts();
problem.within(field)
}
}
impl ConfigBuildError {
/// Return a new ConfigBuildError that prefixes its field name with
/// `prefix` and a dot.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment