pub enum IniReaderError {
Empty,
Duplicate,
OutOfBound,
NotExist,
NotParsed,
IoError(Error),
None,
}Expand description
Error types for the INI reader
Variants§
Trait Implementations§
Source§impl Debug for IniReaderError
impl Debug for IniReaderError
Source§impl Display for IniReaderError
impl Display for IniReaderError
Auto Trait Implementations§
impl Freeze for IniReaderError
impl !RefUnwindSafe for IniReaderError
impl Send for IniReaderError
impl Sync for IniReaderError
impl Unpin for IniReaderError
impl !UnwindSafe for IniReaderError
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