pub type FileError = Error;Aliased Type§
pub enum FileError {
ParseError {
message: String,
},
FileError {
message: String,
},
TypeError {
message: String,
},
KeyNotFound {
key: String,
},
SectionNotFound {
name: String,
},
}Variants§
ParseError
Error that occurs during parsing of YINI content (equivalent to yini::ParseError).
FileError
Error that occurs during file I/O operations (equivalent to yini::FileError).
TypeError
Error that occurs when trying to access a value with wrong type.
KeyNotFound
Error that occurs when trying to access a non-existent key or section.
SectionNotFound
Error that occurs when trying to access a non-existent section.