Enum confql_data_resolver::DataResolverError [−][src]
pub enum DataResolverError {
IncompatibleYamlMerge {
src: Value,
dst: Value,
},
CannotMergeIntoNonMapping(Value),
KeyNotFound(String),
YamlError(Error),
IOError(Error),
}
Expand description
Data resolution and value manipulation errors
Variants
Merge attempted of two types with no obvious general method of doing so
Fields of IncompatibleYamlMerge
CannotMergeIntoNonMapping(Value)
Merge attempted into a non-mapping (i.e. primitive or list)
Tuple Fields of CannotMergeIntoNonMapping
0: Value
KeyNotFound(String)
Attempt made to access data at a non-existing key within a mapping
Tuple Fields of KeyNotFound
0: String
YamlError(Error)
Tuple Fields of YamlError
0: Error
IOError(Error)
Tuple Fields of IOError
0: Error