pub enum ConfigurationParserError {
Parse {
data: String,
parser: String,
supported_format_list: Vec<String>,
source: Error,
},
ParserNotFound,
}Expand description
Parser error type.
Variants§
Parse
Could not parse contents.
ParserNotFound
Could not found parser or guess format to choose correct parser.
Trait Implementations§
source§impl Debug for ConfigurationParserError
impl Debug for ConfigurationParserError
source§impl Display for ConfigurationParserError
impl Display for ConfigurationParserError
source§impl Error for ConfigurationParserError
impl Error for ConfigurationParserError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl RefUnwindSafe for ConfigurationParserError
impl Send for ConfigurationParserError
impl Sync for ConfigurationParserError
impl Unpin for ConfigurationParserError
impl UnwindSafe for ConfigurationParserError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more